You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@deltaspike.apache.org by li...@apache.org on 2012/01/25 08:02:22 UTC

[2/6] git commit: Spelling and JavaDoc

Spelling and JavaDoc


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

Branch: refs/heads/master
Commit: 7d77050059b5a4f3690462a86e42ae4a81368ad7
Parents: 471ffbe
Author: Jason Porter <li...@apache.org>
Authored: Tue Jan 24 23:52:23 2012 -0700
Committer: Jason Porter <li...@apache.org>
Committed: Tue Jan 24 23:52:23 2012 -0700

----------------------------------------------------------------------
 .../deltaspike/core/util/ProjectStageProducer.java |    4 ++--
 .../apache/deltaspike/core/util/Reflections.java   |    8 ++++----
 2 files changed, 6 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/blob/7d770500/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/util/ProjectStageProducer.java
----------------------------------------------------------------------
diff --git a/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/util/ProjectStageProducer.java b/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/util/ProjectStageProducer.java
index 35abe82..9f0cf14 100644
--- a/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/util/ProjectStageProducer.java
+++ b/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/util/ProjectStageProducer.java
@@ -90,7 +90,7 @@ public class ProjectStageProducer implements Serializable
     }
 
     /**
-     * <p>This factory method should only get used if there is absolutly no way
+     * <p>This factory method should only get used if there is absolutely no way
      * to get the current {@link ProjectStage} via &#064;Inject.</p>
      *
      * <p></p>
@@ -187,7 +187,7 @@ public class ProjectStageProducer implements Serializable
     }
 
     /*
-     * Methods which might be needed for unti tests
+     * Methods which might be needed for unit tests
      */
 
     /**

http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/blob/7d770500/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/util/Reflections.java
----------------------------------------------------------------------
diff --git a/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/util/Reflections.java b/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/util/Reflections.java
index b446dc3..3fec777 100644
--- a/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/util/Reflections.java
+++ b/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/util/Reflections.java
@@ -470,7 +470,7 @@ public class Reflections
      * <p/>
      * <p>
      * This method attempts to set the accessible flag of the method in a
-     * {@link PrivilegedAction} before invoking the method if the first argument
+     * {@link java.security.PrivilegedAction} before invoking the method if the first argument
      * is true.
      * </p>
      * <p/>
@@ -519,7 +519,7 @@ public class Reflections
      * <p/>
      * <p>
      * If instructed, this method attempts to set the accessible flag of the method in a
-     * {@link PrivilegedAction} before invoking the method.
+     * {@link java.security.PrivilegedAction} before invoking the method.
      * </p>
      *
      * @param setAccessible flag indicating whether method should first be set as
@@ -595,7 +595,7 @@ public class Reflections
      * </p>
      * <p/>
      * <p>This method provides the same functionality and throws the same exceptions as
-     * {@link Reflections#setFieldValue(boolean, Method, Class, Object, Object...)}, honoring
+     * {@link Reflections#setFieldValue(boolean, Field, Object, Object)}, honoring
      * the accessibility of the field.</p>
      */
     public static void setFieldValue(Field field, Object instance, Object value)
@@ -616,7 +616,7 @@ public class Reflections
      * <p/>
      * <p>
      * If instructed, this method attempts to set the accessible flag of the method in a
-     * {@link PrivilegedAction} before invoking the method.
+     * {@link java.security.PrivilegedAction} before invoking the method.
      * </p>
      *
      * @param field    the field on which to operate, or null if the field is static