Revert "GroupSuggestOracle: Remove unused constructor from GroupInfo inner class"

This reverts commit e2e314bd51. Without
this empty protected constructor, cookbook plugin compilation fails with
the following error:

Line 78: Constructors must be 'protected' in subclasses of JavaScriptObject

Change-Id: Ia72bdcf8ccc2eef95ae49138de72c4956d12993e
This commit is contained in:
Hugo Arès
2015-09-25 13:31:50 -04:00
parent a402ccb8e4
commit 1ebb9834dd

View File

@@ -77,5 +77,8 @@ public class GroupSuggestOracle extends SuggestOracle {
private static class GroupInfo extends JavaScriptObject {
// Dummy class, does nothing.
protected GroupInfo() {
}
}
}