summaryrefslogtreecommitdiffstats
path: root/demo
diff options
context:
space:
mode:
authorDecebal Suiu <decebal.suiu@gmail.com>2016-03-19 19:10:25 +0200
committerDecebal Suiu <decebal.suiu@gmail.com>2016-03-19 19:10:25 +0200
commit1a00fbd0af5bd04d5865b5c6d9c928941a86c79e (patch)
tree422677cda30c8880cc4b241f2baad7dc184fbcb1 /demo
parent1cef2c61ca1e641d86c34511368db897bf6b9962 (diff)
downloadpf4j-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.java2
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();
}