Skip to content

Commit 229fbd9

Browse files
committed
remove javadoc warnings
1 parent 09d936d commit 229fbd9

File tree

7 files changed

+80
-80
lines changed

7 files changed

+80
-80
lines changed

src/main/java/org/codehaus/groovy/runtime/ArrayGroovyMethods.java

Lines changed: 63 additions & 63 deletions
Original file line numberDiff line numberDiff line change
@@ -6620,15 +6620,15 @@ public static <T> T[] minus(T[] self, Object removeMe) {
66206620
* <pre class="groovyTestCase">
66216621
* def arr = [1, 2, 3, 3, 4, 4, 5, 6, 7] as Integer[]
66226622
* // usage case like lower_bound(cpp), bisect_left(python)
6623-
* assert arr.partitionPoint(0..&lt;arr.size()) { it < 4 } == 4
6623+
* assert arr.partitionPoint(0..&lt;arr.size()) { it &lt; 4 } == 4
66246624
* // usage case like upper_bound(cpp), bisect_right(python)
6625-
* assert arr.partitionPoint(0..&lt;arr.size()) { it <= 4 } == 6
6625+
* assert arr.partitionPoint(0..&lt;arr.size()) { it &lt;= 4 } == 6
66266626
* // for all match condition
6627-
* assert arr.partitionPoint(0..&lt;arr.size()) { it <= 100 } == arr.size()
6627+
* assert arr.partitionPoint(0..&lt;arr.size()) { it &lt;= 100 } == arr.size()
66286628
* // for no match condition
6629-
* assert arr.partitionPoint(0..&lt;arr.size()) { it <= 0 } == 0
6629+
* assert arr.partitionPoint(0..&lt;arr.size()) { it &lt;= 0 } == 0
66306630
* // for no match condition with range
6631-
* assert arr.partitionPoint(2..&lt;arr.size()) { it <= 0 } == 2
6631+
* assert arr.partitionPoint(2..&lt;arr.size()) { it &lt;= 0 } == 2
66326632
* </pre>
66336633
*
66346634
* @param self a groovy arr
@@ -6668,13 +6668,13 @@ public static <T> int partitionPoint(T[] self, IntRange range, Predicate<T> cond
66686668
* <pre class="groovyTestCase">
66696669
* def arr = [1, 2, 3, 3, 4, 4, 5, 6, 7] as Integer[]
66706670
* // usage case like lower_bound(cpp), bisect_left(python)
6671-
* assert arr.partitionPoint{ it < 4 } == 4
6671+
* assert arr.partitionPoint{ it &lt; 4 } == 4
66726672
* // usage case like upper_bound(cpp), bisect_right(python)
6673-
* assert arr.partitionPoint{ it <= 4 } == 6
6673+
* assert arr.partitionPoint{ it &lt;= 4 } == 6
66746674
* // for all match condition
6675-
* assert arr.partitionPoint{ it <= 100 } == arr.size()
6675+
* assert arr.partitionPoint{ it &lt;= 100 } == arr.size()
66766676
* // for no match condition
6677-
* assert arr.partitionPoint{ it <= 0 } == 0
6677+
* assert arr.partitionPoint{ it &lt;= 0 } == 0
66786678
* </pre>
66796679
*
66806680
* @param self a groovy arr
@@ -6698,15 +6698,15 @@ public static <T> int partitionPoint(T[] self, Predicate<T> condition) {
66986698
* <pre class="groovyTestCase">
66996699
* def arr = [1, 2, 3, 3, 4, 4, 5, 6, 7] as char[]
67006700
* // usage case like lower_bound(cpp), bisect_left(python)
6701-
* assert arr.partitionPoint(0..&lt;arr.size()) { it < 4 } == 4
6701+
* assert arr.partitionPoint(0..&lt;arr.size()) { it &lt; 4 } == 4
67026702
* // usage case like upper_bound(cpp), bisect_right(python)
6703-
* assert arr.partitionPoint(0..&lt;arr.size()) { it <= 4 } == 6
6703+
* assert arr.partitionPoint(0..&lt;arr.size()) { it &lt;= 4 } == 6
67046704
* // for all match condition
6705-
* assert arr.partitionPoint(0..&lt;arr.size()) { it <= 100 } == arr.size()
6705+
* assert arr.partitionPoint(0..&lt;arr.size()) { it &lt;= 100 } == arr.size()
67066706
* // for no match condition
6707-
* assert arr.partitionPoint(0..&lt;arr.size()) { it <= 0 } == 0
6707+
* assert arr.partitionPoint(0..&lt;arr.size()) { it &lt;= 0 } == 0
67086708
* // for no match condition with range
6709-
* assert arr.partitionPoint(2..&lt;arr.size()) { it <= 0 } == 2
6709+
* assert arr.partitionPoint(2..&lt;arr.size()) { it &lt;= 0 } == 2
67106710
* </pre>
67116711
*
67126712
* @param self a groovy arr
@@ -6746,13 +6746,13 @@ public static int partitionPoint(char[] self, IntRange range, IntPredicate condi
67466746
* <pre class="groovyTestCase">
67476747
* def arr = [1, 2, 3, 3, 4, 4, 5, 6, 7] as char[]
67486748
* // usage case like lower_bound(cpp), bisect_left(python)
6749-
* assert arr.partitionPoint{ it < 4 } == 4
6749+
* assert arr.partitionPoint{ it &lt; 4 } == 4
67506750
* // usage case like upper_bound(cpp), bisect_right(python)
6751-
* assert arr.partitionPoint{ it <= 4 } == 6
6751+
* assert arr.partitionPoint{ it &lt;= 4 } == 6
67526752
* // for all match condition
6753-
* assert arr.partitionPoint{ it <= 100 } == arr.size()
6753+
* assert arr.partitionPoint{ it &lt;= 100 } == arr.size()
67546754
* // for no match condition
6755-
* assert arr.partitionPoint{ it <= 0 } == 0
6755+
* assert arr.partitionPoint{ it &lt;= 0 } == 0
67566756
* </pre>
67576757
*
67586758
* @param self a groovy arr
@@ -6776,15 +6776,15 @@ public static int partitionPoint(char[] self, IntPredicate condition) {
67766776
* <pre class="groovyTestCase">
67776777
* def arr = [1, 2, 3, 3, 4, 4, 5, 6, 7] as short[]
67786778
* // usage case like lower_bound(cpp), bisect_left(python)
6779-
* assert arr.partitionPoint(0..&lt;arr.size()) { it < 4 } == 4
6779+
* assert arr.partitionPoint(0..&lt;arr.size()) { it &lt; 4 } == 4
67806780
* // usage case like upper_bound(cpp), bisect_right(python)
6781-
* assert arr.partitionPoint(0..&lt;arr.size()) { it <= 4 } == 6
6781+
* assert arr.partitionPoint(0..&lt;arr.size()) { it &lt;= 4 } == 6
67826782
* // for all match condition
6783-
* assert arr.partitionPoint(0..&lt;arr.size()) { it <= 100 } == arr.size()
6783+
* assert arr.partitionPoint(0..&lt;arr.size()) { it &lt;= 100 } == arr.size()
67846784
* // for no match condition
6785-
* assert arr.partitionPoint(0..&lt;arr.size()) { it <= 0 } == 0
6785+
* assert arr.partitionPoint(0..&lt;arr.size()) { it &lt;= 0 } == 0
67866786
* // for no match condition with range
6787-
* assert arr.partitionPoint(2..&lt;arr.size()) { it <= 0 } == 2
6787+
* assert arr.partitionPoint(2..&lt;arr.size()) { it &lt;= 0 } == 2
67886788
* </pre>
67896789
*
67906790
* @param self a groovy arr
@@ -6824,13 +6824,13 @@ public static int partitionPoint(short[] self, IntRange range, IntPredicate cond
68246824
* <pre class="groovyTestCase">
68256825
* def arr = [1, 2, 3, 3, 4, 4, 5, 6, 7] as short[]
68266826
* // usage case like lower_bound(cpp), bisect_left(python)
6827-
* assert arr.partitionPoint{ it < 4 } == 4
6827+
* assert arr.partitionPoint{ it &lt; 4 } == 4
68286828
* // usage case like upper_bound(cpp), bisect_right(python)
6829-
* assert arr.partitionPoint{ it <= 4 } == 6
6829+
* assert arr.partitionPoint{ it &lt;= 4 } == 6
68306830
* // for all match condition
6831-
* assert arr.partitionPoint{ it <= 100 } == arr.size()
6831+
* assert arr.partitionPoint{ it &lt;= 100 } == arr.size()
68326832
* // for no match condition
6833-
* assert arr.partitionPoint{ it <= 0 } == 0
6833+
* assert arr.partitionPoint{ it &lt;= 0 } == 0
68346834
* </pre>
68356835
*
68366836
* @param self a groovy arr
@@ -6854,15 +6854,15 @@ public static int partitionPoint(short[] self, IntPredicate condition) {
68546854
* <pre class="groovyTestCase">
68556855
* def arr = [1, 2, 3, 3, 4, 4, 5, 6, 7] as int[]
68566856
* // usage case like lower_bound(cpp), bisect_left(python)
6857-
* assert arr.partitionPoint(0..&lt;arr.size()) { it < 4 } == 4
6857+
* assert arr.partitionPoint(0..&lt;arr.size()) { it &lt; 4 } == 4
68586858
* // usage case like upper_bound(cpp), bisect_right(python)
6859-
* assert arr.partitionPoint(0..&lt;arr.size()) { it <= 4 } == 6
6859+
* assert arr.partitionPoint(0..&lt;arr.size()) { it &lt;= 4 } == 6
68606860
* // for all match condition
6861-
* assert arr.partitionPoint(0..&lt;arr.size()) { it <= 100 } == arr.size()
6861+
* assert arr.partitionPoint(0..&lt;arr.size()) { it &lt;= 100 } == arr.size()
68626862
* // for all match condition
6863-
* assert arr.partitionPoint(0..&lt;arr.size()) { it <= 0 } == 0
6863+
* assert arr.partitionPoint(0..&lt;arr.size()) { it &lt;= 0 } == 0
68646864
* // for no match condition with range
6865-
* assert arr.partitionPoint(2..&lt;arr.size()) { it <= 0 } == 2
6865+
* assert arr.partitionPoint(2..&lt;arr.size()) { it &lt;= 0 } == 2
68666866
* </pre>
68676867
*
68686868
* @param self a groovy arr
@@ -6902,13 +6902,13 @@ public static int partitionPoint(int[] self, IntRange range, IntPredicate condit
69026902
* <pre class="groovyTestCase">
69036903
* def arr = [1, 2, 3, 3, 4, 4, 5, 6, 7] as int[]
69046904
* // usage case like lower_bound(cpp), bisect_left(python)
6905-
* assert arr.partitionPoint{ it < 4 } == 4
6905+
* assert arr.partitionPoint{ it &lt; 4 } == 4
69066906
* // usage case like upper_bound(cpp), bisect_right(python)
6907-
* assert arr.partitionPoint{ it <= 4 } == 6
6907+
* assert arr.partitionPoint{ it &lt;= 4 } == 6
69086908
* // for all match condition
6909-
* assert arr.partitionPoint{ it <= 100 } == arr.size()
6909+
* assert arr.partitionPoint{ it &lt;= 100 } == arr.size()
69106910
* // for no match condition
6911-
* assert arr.partitionPoint{ it <= 0 } == 0
6911+
* assert arr.partitionPoint{ it &lt;= 0 } == 0
69126912
* </pre>
69136913
*
69146914
* @param self a groovy arr
@@ -6932,15 +6932,15 @@ public static int partitionPoint(int[] self, IntPredicate condition) {
69326932
* <pre class="groovyTestCase">
69336933
* def arr = [1, 2, 3, 3, 4, 4, 5, 6, 7] as long[]
69346934
* // usage case like lower_bound(cpp), bisect_left(python)
6935-
* assert arr.partitionPoint(0..&lt;arr.size()) { it < 4 } == 4
6935+
* assert arr.partitionPoint(0..&lt;arr.size()) { it &lt; 4 } == 4
69366936
* // usage case like upper_bound(cpp), bisect_right(python)
6937-
* assert arr.partitionPoint(0..&lt;arr.size()) { it <= 4 } == 6
6937+
* assert arr.partitionPoint(0..&lt;arr.size()) { it &lt;= 4 } == 6
69386938
* // for all match condition
6939-
* assert arr.partitionPoint(0..&lt;arr.size()) { it <= 100 } == arr.size()
6939+
* assert arr.partitionPoint(0..&lt;arr.size()) { it &lt;= 100 } == arr.size()
69406940
* // for no match condition
6941-
* assert arr.partitionPoint(0..&lt;arr.size()) { it <= 0 } == 0
6941+
* assert arr.partitionPoint(0..&lt;arr.size()) { it &lt;= 0 } == 0
69426942
* // for no match condition with range
6943-
* assert arr.partitionPoint(2..&lt;arr.size()) { it <= 0 } == 2
6943+
* assert arr.partitionPoint(2..&lt;arr.size()) { it &lt;= 0 } == 2
69446944
* </pre>
69456945
*
69466946
* @param self a groovy arr
@@ -6980,13 +6980,13 @@ public static int partitionPoint(long[] self, IntRange range, LongPredicate cond
69806980
* <pre class="groovyTestCase">
69816981
* def arr = [1, 2, 3, 3, 4, 4, 5, 6, 7] as long[]
69826982
* // usage case like lower_bound(cpp), bisect_left(python)
6983-
* assert arr.partitionPoint{ it < 4 } == 4
6983+
* assert arr.partitionPoint{ it &lt; 4 } == 4
69846984
* // usage case like upper_bound(cpp), bisect_right(python)
6985-
* assert arr.partitionPoint{ it <= 4 } == 6
6985+
* assert arr.partitionPoint{ it &lt;= 4 } == 6
69866986
* // for all match condition
6987-
* assert arr.partitionPoint{ it <= 100 } == arr.size()
6987+
* assert arr.partitionPoint{ it &lt;= 100 } == arr.size()
69886988
* // for no match condition
6989-
* assert arr.partitionPoint{ it <= 0 } == 0
6989+
* assert arr.partitionPoint{ it &lt;= 0 } == 0
69906990
* </pre>
69916991
*
69926992
* @param self a groovy arr
@@ -7010,15 +7010,15 @@ public static int partitionPoint(long[] self, LongPredicate condition) {
70107010
* <pre class="groovyTestCase">
70117011
* def arr = [1, 2, 3, 3, 4, 4, 5, 6, 7] as float[]
70127012
* // usage case like lower_bound(cpp), bisect_left(python)
7013-
* assert arr.partitionPoint(0..&lt;arr.size()) { it < 4 } == 4
7013+
* assert arr.partitionPoint(0..&lt;arr.size()) { it &lt; 4 } == 4
70147014
* // usage case like upper_bound(cpp), bisect_right(python)
7015-
* assert arr.partitionPoint(0..&lt;arr.size()) { it <= 4 } == 6
7015+
* assert arr.partitionPoint(0..&lt;arr.size()) { it &lt;= 4 } == 6
70167016
* // for all match condition
7017-
* assert arr.partitionPoint(0..&lt;arr.size()) { it <= 100 } == arr.size()
7017+
* assert arr.partitionPoint(0..&lt;arr.size()) { it &lt;= 100 } == arr.size()
70187018
* // for no match condition
7019-
* assert arr.partitionPoint(0..&lt;arr.size()) { it <= 0 } == 0
7019+
* assert arr.partitionPoint(0..&lt;arr.size()) { it &lt;= 0 } == 0
70207020
* // for no match condition with range
7021-
* assert arr.partitionPoint(2..&lt;arr.size()) { it <= 0 } == 2
7021+
* assert arr.partitionPoint(2..&lt;arr.size()) { it &lt;= 0 } == 2
70227022
* </pre>
70237023
*
70247024
* @param self a groovy arr
@@ -7058,13 +7058,13 @@ public static int partitionPoint(float[] self, IntRange range, DoublePredicate c
70587058
* <pre class="groovyTestCase">
70597059
* def arr = [1, 2, 3, 3, 4, 4, 5, 6, 7] as float[]
70607060
* // usage case like lower_bound(cpp), bisect_left(python)
7061-
* assert arr.partitionPoint{ it < 4 } == 4
7061+
* assert arr.partitionPoint{ it &lt; 4 } == 4
70627062
* // usage case like upper_bound(cpp), bisect_right(python)
7063-
* assert arr.partitionPoint{ it <= 4 } == 6
7063+
* assert arr.partitionPoint{ it &lt;= 4 } == 6
70647064
* // for all match condition
7065-
* assert arr.partitionPoint{ it <= 100 } == arr.size()
7065+
* assert arr.partitionPoint{ it &lt;= 100 } == arr.size()
70667066
* // for no match condition
7067-
* assert arr.partitionPoint{ it <= 0 } == 0
7067+
* assert arr.partitionPoint{ it &lt;= 0 } == 0
70687068
* </pre>
70697069
*
70707070
* @param self a groovy arr
@@ -7088,15 +7088,15 @@ public static int partitionPoint(float[] self, DoublePredicate condition) {
70887088
* <pre class="groovyTestCase">
70897089
* def arr = [1, 2, 3, 3, 4, 4, 5, 6, 7] as double[]
70907090
* // usage case like lower_bound(cpp), bisect_left(python)
7091-
* assert arr.partitionPoint(0..&lt;arr.size()) { it < 4 } == 4
7091+
* assert arr.partitionPoint(0..&lt;arr.size()) { it &lt; 4 } == 4
70927092
* // usage case like upper_bound(cpp), bisect_right(python)
7093-
* assert arr.partitionPoint(0..&lt;arr.size()) { it <= 4 } == 6
7093+
* assert arr.partitionPoint(0..&lt;arr.size()) { it &lt;= 4 } == 6
70947094
* // for all match condition
7095-
* assert arr.partitionPoint(0..&lt;arr.size()) { it <= 100 } == arr.size()
7095+
* assert arr.partitionPoint(0..&lt;arr.size()) { it &lt;= 100 } == arr.size()
70967096
* // for all match condition
7097-
* assert arr.partitionPoint(0..&lt;arr.size()) { it <= 0 } == 0
7097+
* assert arr.partitionPoint(0..&lt;arr.size()) { it &lt;= 0 } == 0
70987098
* // for no match condition with range
7099-
* assert arr.partitionPoint(2..&lt;arr.size()) { it <= 0 } == 2
7099+
* assert arr.partitionPoint(2..&lt;arr.size()) { it &lt;= 0 } == 2
71007100
* </pre>
71017101
*
71027102
* @param self a groovy array
@@ -7136,13 +7136,13 @@ public static int partitionPoint(double[] self, IntRange range, DoublePredicate
71367136
* <pre class="groovyTestCase">
71377137
* def arr = [1, 2, 3, 3, 4, 4, 5, 6, 7] as double[]
71387138
* // usage case like lower_bound(cpp), bisect_left(python)
7139-
* assert arr.partitionPoint{ it < 4 } == 4
7139+
* assert arr.partitionPoint{ it &lt; 4 } == 4
71407140
* // usage case like upper_bound(cpp), bisect_right(python)
7141-
* assert arr.partitionPoint{ it <= 4 } == 6
7141+
* assert arr.partitionPoint{ it &lt;= 4 } == 6
71427142
* // for all match condition
7143-
* assert arr.partitionPoint{ it <= 100 } == arr.size()
7143+
* assert arr.partitionPoint{ it &lt;= 100 } == arr.size()
71447144
* // for no match condition
7145-
* assert arr.partitionPoint{ it <= 0 } == 0
7145+
* assert arr.partitionPoint{ it &lt;= 0 } == 0
71467146
* </pre>
71477147
*
71487148
* @param self a groovy arr

src/main/java/org/codehaus/groovy/runtime/DefaultGroovyMethods.java

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -11082,23 +11082,23 @@ public static <T> SortedSet<T> or(SortedSet<T> left, Iterable<T> right) {
1108211082
* The list is assumed to be partitioned according to the given predicate.
1108311083
* <pre class="groovyTestCase">
1108411084
* def list = [7, 15, 3, 5, 4, 12, 6]
11085-
* assert list.partitionPoint(0..<list.size()) { it%2 != 0 } == 4
11085+
* assert list.partitionPoint(0..&lt;list.size()) { it%2 != 0 } == 4
1108611086
* </pre>
1108711087
*
1108811088
* <pre class="groovyTestCase">
1108911089
* def list = [1, 2, 3, 3, 4, 4, 5, 6, 7]
1109011090
* // usage case as lower_bound(cpp), bisect_left(python)
11091-
* assert list.partitionPoint(0..<list.size()) { it < 4 } == 4
11091+
* assert list.partitionPoint(0..&lt;list.size()) { it &lt; 4 } == 4
1109211092
* // usage case as upper_bound(cpp), bisect_right(python)
11093-
* assert list.partitionPoint(0..<list.size()) { it <= 4 } == 6
11093+
* assert list.partitionPoint(0..&lt;list.size()) { it &lt;= 4 } == 6
1109411094
* // for all match condition
11095-
* assert list.partitionPoint(0..<list.size()) { it <= 20 } == list.size()
11095+
* assert list.partitionPoint(0..&lt;list.size()) { it &lt;= 20 } == list.size()
1109611096
* // for no match condition
11097-
* assert list.partitionPoint(0..<list.size()) { it <= 0 } == 0
11097+
* assert list.partitionPoint(0..&lt;list.size()) { it &lt;= 0 } == 0
1109811098
* // for all match condition with range
11099-
* assert list.partitionPoint(0..<4) { it <= 20 } == 4
11099+
* assert list.partitionPoint(0..&lt;4) { it &lt;= 20 } == 4
1110011100
* // for no match condition with range
11101-
* assert list.partitionPoint(2..<list.size()) { it <= 0 } == 2
11101+
* assert list.partitionPoint(2..&lt;list.size()) { it &lt;= 0 } == 2
1110211102
* </pre>
1110311103
*
1110411104
* @param self a groovy list
@@ -11137,13 +11137,13 @@ public static <T> int partitionPoint(List<T> self, IntRange range, Predicate<T>
1113711137
* <pre class="groovyTestCase">
1113811138
* def list = [1, 2, 3, 3, 4, 4, 5, 6, 7]
1113911139
* // usage case as lower_bound(cpp), bisect_left(python)
11140-
* assert list.partitionPoint{ it < 4 } == 4
11140+
* assert list.partitionPoint{ it &lt; 4 } == 4
1114111141
* // usage case as upper_bound(cpp), bisect_right(python)
11142-
* assert list.partitionPoint{ it <= 4 } == 6
11142+
* assert list.partitionPoint{ it &lt;= 4 } == 6
1114311143
* // for all match condition
11144-
* assert list.partitionPoint{ it <= 100 } == list.size()
11144+
* assert list.partitionPoint{ it &lt;= 100 } == list.size()
1114511145
* // for no match condition
11146-
* assert list.partitionPoint{ it <= 0 } == 0
11146+
* assert list.partitionPoint{ it &lt;= 0 } == 0
1114711147
* // predicate of reverse logic examples:
1114811148
* assert [7, 6, 5, 4, 4, 3, 3, 2, 1].partitionPoint{ it > 4 } == 3
1114911149
* assert [7, 6, 5, 4, 4, 3, 3, 2, 1].partitionPoint{ it >= 4 } == 5

src/main/java/org/codehaus/groovy/runtime/StringGroovyMethods.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2802,7 +2802,7 @@ public static int size(final CharSequence self) {
28022802
*
28032803
* <pre class="groovyTestCase">
28042804
* def sb = new StringBuilder()
2805-
* sb << 'foobar'
2805+
* {@code sb << 'foobar'}
28062806
* sb.length -= 3
28072807
* assert sb.toString() == 'foo'
28082808
* </pre>
@@ -2823,7 +2823,7 @@ public static int getLength(final StringBuilder self) {
28232823
*
28242824
* <pre class="groovyTestCase">
28252825
* def sb = new StringBuffer()
2826-
* sb << 'foobar'
2826+
* {@code sb << 'foobar'}
28272827
* sb.length -= 3
28282828
* assert sb.toString() == 'foo'
28292829
* </pre>

subprojects/groovy-templates/src/main/groovy/groovy/text/GStringTemplateEngine.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
*
8080
* The conference committee.
8181
* </pre>
82-
* The template engine can also be used as the engine for {@link groovy.servlet.TemplateServlet} by placing the
82+
* The template engine can also be used as the engine for {@code groovy.servlet.TemplateServlet} by placing the
8383
* following in your <code>web.xml</code> file (plus a corresponding servlet-mapping element):
8484
* <pre>
8585
* &lt;servlet&gt;

subprojects/groovy-templates/src/main/groovy/groovy/text/SimpleTemplateEngine.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
*
7777
* The conference committee.
7878
* </pre>
79-
* The template engine can also be used as the engine for {@link groovy.servlet.TemplateServlet} by placing the
79+
* The template engine can also be used as the engine for {@code groovy.servlet.TemplateServlet} by placing the
8080
* following in your <code>web.xml</code> file (plus a corresponding servlet-mapping element):
8181
* <pre>
8282
* &lt;servlet&gt;

subprojects/groovy-templates/src/main/groovy/groovy/text/StreamingTemplateEngine.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@
102102
* <br />
103103
* <h3>StreamingTemplateEngine as a servlet engine</h3>
104104
* The template engine can also be used as the engine for
105-
* {@link groovy.servlet.TemplateServlet} by placing the following in your
105+
* {@code groovy.servlet.TemplateServlet} by placing the following in your
106106
* <code>web.xml</code> file (plus a corresponding servlet-mapping element):
107107
* <pre>
108108
*

subprojects/groovy-templates/src/main/groovy/groovy/text/XmlTemplateEngine.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292
* How are you today?
9393
* &lt;/document&gt;
9494
* </pre>
95-
* The XML template engine can also be used as the engine for {@link groovy.servlet.TemplateServlet} by placing the
95+
* The XML template engine can also be used as the engine for {@code groovy.servlet.TemplateServlet} by placing the
9696
* following in your web.xml file (plus a corresponding servlet-mapping element):
9797
* <pre>
9898
* &lt;servlet&gt;

0 commit comments

Comments
 (0)