Remove modifiers 'public' and 'abstract' from interface methods
These modifiers are unnecessary (default for interface methods). Change-Id: I5ad21dded21059922fb00449ba44e98037311ac4
This commit is contained in:
@@ -15,5 +15,5 @@
|
||||
package com.google.gwtexpui.globalkey.client;
|
||||
|
||||
public interface KeyCommandFilter {
|
||||
public boolean include(KeyCommand key);
|
||||
boolean include(KeyCommand key);
|
||||
}
|
||||
|
||||
@@ -22,7 +22,7 @@ public interface FindReplace {
|
||||
* @return regular expression to match substrings with; should be treated as
|
||||
* immutable.
|
||||
*/
|
||||
public RegExp pattern();
|
||||
RegExp pattern();
|
||||
|
||||
/**
|
||||
* Find and replace a single instance of this pattern in an input.
|
||||
@@ -36,5 +36,5 @@ public interface FindReplace {
|
||||
* @return result of regular expression replacement.
|
||||
* @throws IllegalArgumentException if the input could not be safely sanitized.
|
||||
*/
|
||||
public String replace(String input);
|
||||
String replace(String input);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user