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 2020/09/17 21:11:13 UTC

[groovy] branch master updated: GROOVY-9745: Remove wrong extra comments (closes #1372)

This is an automated email from the ASF dual-hosted git repository.

paulk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/groovy.git


The following commit(s) were added to refs/heads/master by this push:
     new 32f9cf5  GROOVY-9745: Remove wrong extra comments (closes #1372)
32f9cf5 is described below

commit 32f9cf510c65210eba85a8bf87ac746a58bcdbcd
Author: Simon Tost <si...@tngtech.com>
AuthorDate: Thu Sep 17 19:12:06 2020 +0200

    GROOVY-9745: Remove wrong extra comments (closes #1372)
---
 .../groovy/groovy/xml/MarkupBuilderIllegalCharactersSpec.groovy     | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/subprojects/groovy-xml/src/test/groovy/groovy/xml/MarkupBuilderIllegalCharactersSpec.groovy b/subprojects/groovy-xml/src/test/groovy/groovy/xml/MarkupBuilderIllegalCharactersSpec.groovy
index bd5e368..46bec48 100644
--- a/subprojects/groovy-xml/src/test/groovy/groovy/xml/MarkupBuilderIllegalCharactersSpec.groovy
+++ b/subprojects/groovy-xml/src/test/groovy/groovy/xml/MarkupBuilderIllegalCharactersSpec.groovy
@@ -60,7 +60,7 @@ class MarkupBuilderIllegalCharactersSpec extends Specification {
         'ext control I'             | true         | extControl1           // Discouraged XML, not in HTML char references
         'Next line NEL'             | true         | nextLine              // Not in HTML char references
         'ext control II'            | true         | extControl2           // Discouraged XML, not in HTML char references
-        'Surrogates'                | true         | surrogates            // Not necessarily XML, not in HTML char references
+        'Surrogates'                | true         | surrogates            // Not necessarily XML
         'Non-characters I'          | true         | nonCharacters1        // Discouraged XML, not in HTML char references
         'Non-characters II'         | true         | nonCharacters2        // Discouraged XML, not in HTML char references
     }
@@ -92,7 +92,7 @@ class MarkupBuilderIllegalCharactersSpec extends Specification {
         'ext control I'             | false        | extControl1           // Discouraged XML, not in HTML char references
         'Next line NEL'             | false        | nextLine              // Not in HTML char references
         'ext control II'            | false        | extControl2           // Discouraged XML, not in HTML char references
-        'Surrogates'                | true         | surrogates            // Not necessarily XML, not in HTML char references
+        'Surrogates'                | true         | surrogates            // Not necessarily XML
         'Non-characters I'          | false        | nonCharacters1        // Discouraged XML, not in HTML char references
         'Non-characters II'         | false        | nonCharacters2        // Discouraged XML, not in HTML char references
     }
@@ -122,7 +122,7 @@ class MarkupBuilderIllegalCharactersSpec extends Specification {
         'ext control I'             | false        | extControl1           // Discouraged XML, not in HTML char references
         'Next line NEL'             | false        | nextLine              // Not in HTML char references
         'ext control II'            | false        | extControl2           // Discouraged XML, not in HTML char references
-        'Surrogates'                | false        | surrogates            // Not necessarily XML, not in HTML char references
+        'Surrogates'                | false        | surrogates            // Not necessarily XML
         'Non-characters I'          | false        | nonCharacters1        // Discouraged XML, not in HTML char references
         'Non-characters II'         | false        | nonCharacters2        // Discouraged XML, not in HTML char references
     }