Remove modifiers 'public' and 'abstract' from interface methods

These modifiers are unnecessary (default for interface methods).

Change-Id: I5ad21dded21059922fb00449ba44e98037311ac4
This commit is contained in:
Urs Wolfer
2015-11-18 20:42:13 +01:00
committed by Edwin Kempin
parent 1bab069d1e
commit 4ebf42eb2b
80 changed files with 223 additions and 223 deletions

View File

@@ -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 {

View File

@@ -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 {