You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by pa...@apache.org on 2015/11/15 14:37:18 UTC

incubator-groovy git commit: replaced invalid entity "&nsbp; " with simple space in java docs

Repository: incubator-groovy
Updated Branches:
  refs/heads/master 5e657ff8d -> ced7989ad


replaced invalid entity "&nsbp;" with simple space in java docs


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

Branch: refs/heads/master
Commit: ced7989ad6bdf1ec103dbbc5f50f41504e4d1165
Parents: 5e657ff
Author: pascalschumacher <pa...@gmx.net>
Authored: Sun Nov 15 14:37:01 2015 +0100
Committer: pascalschumacher <pa...@gmx.net>
Committed: Sun Nov 15 14:37:01 2015 +0100

----------------------------------------------------------------------
 src/main/groovy/lang/GroovyShell.java                        | 6 +++---
 .../org/codehaus/groovy/runtime/DefaultGroovyMethods.java    | 8 ++++----
 .../main/java/org/codehaus/groovy/testng/TestNgRunner.java   | 2 +-
 3 files changed, 8 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-groovy/blob/ced7989a/src/main/groovy/lang/GroovyShell.java
----------------------------------------------------------------------
diff --git a/src/main/groovy/lang/GroovyShell.java b/src/main/groovy/lang/GroovyShell.java
index a1af1c3..1b9ae88 100644
--- a/src/main/groovy/lang/GroovyShell.java
+++ b/src/main/groovy/lang/GroovyShell.java
@@ -406,7 +406,7 @@ public class GroovyShell extends GroovyObjectSupport {
 
     /**
      * Utility method to check through reflection if the class appears to be a
-     * JUnit 3.8.x test, i.e.&nsbp;checks if it extends JUnit 3.8.x's TestCase.
+     * JUnit 3.8.x test, i.e. checks if it extends JUnit 3.8.x's TestCase.
      *
      * @param scriptClass the class we want to check
      * @return true if the class appears to be a test
@@ -433,7 +433,7 @@ public class GroovyShell extends GroovyObjectSupport {
 
      /**
      * Utility method to check through reflection if the class appears to be a
-     * JUnit 3.8.x test suite, i.e.&nsbp;checks if it extends JUnit 3.8.x's TestSuite.
+     * JUnit 3.8.x test suite, i.e. checks if it extends JUnit 3.8.x's TestSuite.
      *
      * @param scriptClass the class we want to check
      * @return true if the class appears to be a test
@@ -460,7 +460,7 @@ public class GroovyShell extends GroovyObjectSupport {
 
     /**
      * Utility method to check via reflection if the parsed class appears to be a JUnit4
-     * test, i.e.&nsbp;checks whether it appears to be using the relevant JUnit 4 annotations.
+     * test, i.e. checks whether it appears to be using the relevant JUnit 4 annotations.
      *
      * @param scriptClass the class we want to check
      * @return true if the class appears to be a test

http://git-wip-us.apache.org/repos/asf/incubator-groovy/blob/ced7989a/src/main/org/codehaus/groovy/runtime/DefaultGroovyMethods.java
----------------------------------------------------------------------
diff --git a/src/main/org/codehaus/groovy/runtime/DefaultGroovyMethods.java b/src/main/org/codehaus/groovy/runtime/DefaultGroovyMethods.java
index c806c2b..b343211 100644
--- a/src/main/org/codehaus/groovy/runtime/DefaultGroovyMethods.java
+++ b/src/main/org/codehaus/groovy/runtime/DefaultGroovyMethods.java
@@ -374,7 +374,7 @@ public class DefaultGroovyMethods extends DefaultGroovyMethodsSupport {
 
     /**
      * Convenience method that calls {@link #getMetaPropertyValues(java.lang.Object)}(self)
-     * and provides the data in form of simple key/value pairs, i.e.&nsbp;without
+     * and provides the data in form of simple key/value pairs, i.e. without
      * type() information.
      *
      * @param self the receiver object
@@ -2188,7 +2188,7 @@ public class DefaultGroovyMethods extends DefaultGroovyMethodsSupport {
     }
 
     /**
-     * Used to determine if the given predicate closure is valid (i.e.&nsbp;returns
+     * Used to determine if the given predicate closure is valid (i.e. returns
      * <code>true</code> for all items in this data structure).
      * A simple example for a list:
      * <pre>def list = [3,4,5]
@@ -2211,7 +2211,7 @@ public class DefaultGroovyMethods extends DefaultGroovyMethodsSupport {
     }
 
     /**
-     * Used to determine if the given predicate closure is valid (i.e.&nsbp;returns
+     * Used to determine if the given predicate closure is valid (i.e. returns
      * <code>true</code> for all items in this iterator).
      * A simple example for a list:
      * <pre>def list = [3,4,5]
@@ -2234,7 +2234,7 @@ public class DefaultGroovyMethods extends DefaultGroovyMethodsSupport {
     }
 
     /**
-     * Used to determine if the given predicate closure is valid (i.e.&nsbp;returns
+     * Used to determine if the given predicate closure is valid (i.e. returns
      * <code>true</code> for all items in this iterable).
      * A simple example for a list:
      * <pre>def list = [3,4,5]

http://git-wip-us.apache.org/repos/asf/incubator-groovy/blob/ced7989a/subprojects/groovy-testng/src/main/java/org/codehaus/groovy/testng/TestNgRunner.java
----------------------------------------------------------------------
diff --git a/subprojects/groovy-testng/src/main/java/org/codehaus/groovy/testng/TestNgRunner.java b/subprojects/groovy-testng/src/main/java/org/codehaus/groovy/testng/TestNgRunner.java
index a363ce5..f5fe867 100644
--- a/subprojects/groovy-testng/src/main/java/org/codehaus/groovy/testng/TestNgRunner.java
+++ b/subprojects/groovy-testng/src/main/java/org/codehaus/groovy/testng/TestNgRunner.java
@@ -36,7 +36,7 @@ public class TestNgRunner implements GroovyRunner {
 
     /**
      * Utility method to check via reflection if the parsed class appears to be a TestNG
-     * test, i.e.&nsbp;checks whether it appears to be using the relevant TestNG annotations.
+     * test, i.e. checks whether it appears to be using the relevant TestNG annotations.
      *
      * @param scriptClass the class we want to check
      * @param loader the GroovyClassLoader to use to find classes