diff options
author | Decebal Suiu <decebal.suiu@gmail.com> | 2016-03-19 19:10:25 +0200 |
---|---|---|
committer | Decebal Suiu <decebal.suiu@gmail.com> | 2016-03-19 19:10:25 +0200 |
commit | 1a00fbd0af5bd04d5865b5c6d9c928941a86c79e (patch) | |
tree | 422677cda30c8880cc4b241f2baad7dc184fbcb1 /demo | |
parent | 1cef2c61ca1e641d86c34511368db897bf6b9962 (diff) | |
download | pf4j-1a00fbd0af5bd04d5865b5c6d9c928941a86c79e.tar.gz pf4j-1a00fbd0af5bd04d5865b5c6d9c928941a86c79e.zip |
Modifier "public" is redundant for interface methods
Diffstat (limited to 'demo')
-rw-r--r-- | demo/api/src/main/java/ro/fortsoft/pf4j/demo/api/Greeting.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/demo/api/src/main/java/ro/fortsoft/pf4j/demo/api/Greeting.java b/demo/api/src/main/java/ro/fortsoft/pf4j/demo/api/Greeting.java index c451b09..bdf2fd4 100644 --- a/demo/api/src/main/java/ro/fortsoft/pf4j/demo/api/Greeting.java +++ b/demo/api/src/main/java/ro/fortsoft/pf4j/demo/api/Greeting.java @@ -22,6 +22,6 @@ import ro.fortsoft.pf4j.ExtensionPoint; */ public interface Greeting extends ExtensionPoint { - public String getGreeting(); + String getGreeting(); } |