commit | 9a2e4bd414246c0c201a395ef5f8490883ccfd6c | [log] [tgz] |
---|---|---|
author | David Pursehouse <dpursehouse@digital.ai> | Tue Jun 23 13:18:26 2020 +0900 |
committer | David Pursehouse <dpursehouse@digital.ai> | Tue Jun 23 13:21:57 2020 +0900 |
tree | 6c2fc6f8e61e71f7160f3f8d8e5d765aa0bb480b | |
parent | 44872c4209fb6d379b51d67c9d11be4206a66c41 [diff] |
InitLfs: Remove unnecessary empty overridden method The postRun method has an empty default implementation, so the override is not necessary. Change-Id: I01ca06273622caad05462c798bc495002ee5c012
diff --git a/src/main/java/com/googlesource/gerrit/plugins/lfs/InitLfs.java b/src/main/java/com/googlesource/gerrit/plugins/lfs/InitLfs.java index 89e6238..f44c8d8 100644 --- a/src/main/java/com/googlesource/gerrit/plugins/lfs/InitLfs.java +++ b/src/main/java/com/googlesource/gerrit/plugins/lfs/InitLfs.java
@@ -36,7 +36,4 @@ public void run() throws Exception { lfs.set(PLUGIN_KEY, name); } - - @Override - public void postRun() throws Exception {} }