summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Pursehouse <david.pursehouse@sonymobile.com>2016-04-12 10:22:43 +0900
committerDavid Pursehouse <david.pursehouse@sonymobile.com>2016-04-12 10:22:43 +0900
commitaadec443e68bc503f4554fbfc75aa00c81e7ef24 (patch)
treef4798d88ffbed0911e28f41fb1f55fce5ee9f594
parent701677ac8a09aecc591f219322d18c99dd545efb (diff)
Remove redundant modifiers from interface methods
-rw-r--r--src/main/java/com/googlesource/gerrit/plugins/replication/ReplicationStateListener.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/com/googlesource/gerrit/plugins/replication/ReplicationStateListener.java b/src/main/java/com/googlesource/gerrit/plugins/replication/ReplicationStateListener.java
index e5ac9d5..4dcf5a1 100644
--- a/src/main/java/com/googlesource/gerrit/plugins/replication/ReplicationStateListener.java
+++ b/src/main/java/com/googlesource/gerrit/plugins/replication/ReplicationStateListener.java
@@ -28,7 +28,7 @@ public interface ReplicationStateListener {
* @param msg message description of the error
* @param states replication states impacted
*/
- public abstract void warn(String msg, ReplicationState... states);
+ void warn(String msg, ReplicationState... states);
/**
* Notify a fatal replication error.
@@ -39,7 +39,7 @@ public interface ReplicationStateListener {
* @param msg message description of the error
* @param states replication states impacted
*/
- public abstract void error(String msg, ReplicationState... states);
+ void error(String msg, ReplicationState... states);
/**
* Notify a fatal replication error with the associated exception.
@@ -50,7 +50,7 @@ public interface ReplicationStateListener {
* @param t exception that caused the replication to fail
* @param states replication states impacted
*/
- public abstract void error(String msg, Throwable t,
+ void error(String msg, Throwable t,
ReplicationState... states);
}