Remove modifiers 'public' and 'abstract' from interface methods
These modifiers are unnecessary (default for interface methods). Change-Id: I5ad21dded21059922fb00449ba44e98037311ac4
This commit is contained in:
@@ -56,7 +56,7 @@ public class Panel extends SimplePanel {
|
||||
*
|
||||
* @param panel panel that will contain the panel widget.
|
||||
*/
|
||||
public void onLoad(Panel panel);
|
||||
void onLoad(Panel panel);
|
||||
}
|
||||
|
||||
static final class Context extends JavaScriptObject {
|
||||
|
@@ -58,7 +58,7 @@ public final class Screen extends SimplePanel {
|
||||
*
|
||||
* @param screen panel that will contain the screen widget.
|
||||
*/
|
||||
public void onLoad(Screen screen);
|
||||
void onLoad(Screen screen);
|
||||
}
|
||||
|
||||
static final class Context extends JavaScriptObject {
|
||||
|
Reference in New Issue
Block a user