You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@deltaspike.apache.org by st...@apache.org on 2012/04/15 20:54:14 UTC

git commit: DELTASPIKE-129 make AnnotationBuider package private

Updated Branches:
  refs/heads/master 78d0434e4 -> a7ebb1bd6


DELTASPIKE-129 make AnnotationBuider package private

This is only an internal helper which shall not be used from outside


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

Branch: refs/heads/master
Commit: a7ebb1bd6ce093017282f774dfa00747b836d0d0
Parents: 78d0434
Author: Mark Struberg <st...@apache.org>
Authored: Sun Apr 15 20:53:36 2012 +0200
Committer: Mark Struberg <st...@apache.org>
Committed: Sun Apr 15 20:53:36 2012 +0200

----------------------------------------------------------------------
 .../util/metadata/builder/AnnotationBuilder.java   |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/blob/a7ebb1bd/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/util/metadata/builder/AnnotationBuilder.java
----------------------------------------------------------------------
diff --git a/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/util/metadata/builder/AnnotationBuilder.java b/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/util/metadata/builder/AnnotationBuilder.java
index 0230149..19a50a3 100644
--- a/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/util/metadata/builder/AnnotationBuilder.java
+++ b/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/util/metadata/builder/AnnotationBuilder.java
@@ -34,7 +34,8 @@ import java.util.Set;
  * A store of annotations to be used {@link AnnotatedTypeBuilder} and other places
  * where a collection of annotations needs manipulation.
  */
-public class AnnotationBuilder
+// this class is intentionally made package scope
+class AnnotationBuilder
 {
     private final Map<Class<? extends Annotation>, Annotation> annotationMap;
     private final Set<Annotation> annotationSet;