You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@deltaspike.apache.org by ta...@apache.org on 2016/05/23 18:59:32 UTC

deltaspike git commit: DELTASPIKE-1142 Documentation wrong: an interface does not implement another interface

Repository: deltaspike
Updated Branches:
  refs/heads/master 459463ed9 -> f4ee6a955


DELTASPIKE-1142 Documentation wrong: an interface does not implement another interface

Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo
Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/f4ee6a95
Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/f4ee6a95
Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/f4ee6a95

Branch: refs/heads/master
Commit: f4ee6a955d557ec993b2ce62740106d3a8b5c482
Parents: 459463e
Author: Thomas Andraschko <ta...@apache.org>
Authored: Mon May 23 20:59:24 2016 +0200
Committer: Thomas Andraschko <ta...@apache.org>
Committed: Mon May 23 20:59:24 2016 +0200

----------------------------------------------------------------------
 documentation/src/main/asciidoc/data.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/deltaspike/blob/f4ee6a95/documentation/src/main/asciidoc/data.adoc
----------------------------------------------------------------------
diff --git a/documentation/src/main/asciidoc/data.adoc b/documentation/src/main/asciidoc/data.adoc
index 3681d71..045d6fd 100644
--- a/documentation/src/main/asciidoc/data.adoc
+++ b/documentation/src/main/asciidoc/data.adoc
@@ -266,7 +266,7 @@ public abstract class PersonRepository implements Deactivatable {
 }
 
 @Repository(forEntity = Person.class)
-public interface PersonRepository implements Deactivatable{
+public interface PersonRepository extends Deactivatable {
     ...
 }    
 ----------------------------------------