@@ -54,83 +54,83 @@ protected void ok8(){ }
5454 protected void ok9 (int ...param ){ }
5555
5656 /**
57- * @param prameter typo // $ Alert
57+ * @param prameter typo
5858 */
5959 public void problem1 (int parameter ){ }
6060
6161 /**
62- * @param Parameter capitalization // $ Alert
62+ * @param Parameter capitalization
6363 */
6464 public void problem2 (int parameter ){ }
6565
6666 /**
67- * @param parameter unmatched // $ Alert
67+ * @param parameter unmatched
6868 */
6969 public void problem3 (){ }
7070
7171 /**
7272 * @param someOtherParameter matched
73- * @param parameter unmatched // $ Alert
73+ * @param parameter unmatched
7474 */
7575 public void problem4 (int someOtherParameter ){ }
7676
7777 /**
78- * @param <V> unmatched type parameter // $ Alert
78+ * @param <V> unmatched type parameter
7979 */
8080 private <T > T problem5 (){ return null ; }
8181
8282 /**
8383 * @param <V> matched type parameter
84- * @param <P> unmatched type parameter // $ Alert
85- * @param n unmatched normal parameter // $ Alert
84+ * @param <P> unmatched type parameter
85+ * @param n unmatched normal parameter
8686 */
8787 private <T ,V > T problem6 (V p ){ return null ; }
8888
8989 /**
9090 * param with immediate newline
91- * @param // $ Alert
91+ * @param
9292 */
9393 protected void problem7 (){ }
9494
9595 /**
9696 * param without a value (followed by blanks)
97- * @param // $ Alert
97+ * @param
9898 */
9999 protected void problem8 (){ }
100100
101101 class SomeClass {
102102 /**
103103 * @param i exists
104- * @param k does not // $ Alert
104+ * @param k does not
105105 */
106106 SomeClass (int i , int j ) {}
107107 }
108108
109109 /**
110110 * @param <T> exists
111- * @param T wrong syntax // $ Alert
112- * @param <X> does not exist // $ Alert
111+ * @param T wrong syntax
112+ * @param <X> does not exist
113113 */
114114 class GenericClass <T > {}
115115
116116 /**
117117 * @param <T> exists
118- * @param T wrong syntax // $ Alert
119- * @param <X> does not exist // $ Alert
118+ * @param T wrong syntax
119+ * @param <X> does not exist
120120 */
121121 interface GenericInterface <T > {}
122122
123123 /**
124124 * @param i exists
125- * @param k does not // $ Alert
125+ * @param k does not
126126 */
127127 static record SomeRecord (int i , int j ) {}
128128
129129 /**
130130 * @param <T> exists
131- * @param <U> does not // $ Alert
131+ * @param <U> does not
132132 * @param i exists
133- * @param k does not // $ Alert
133+ * @param k does not
134134 */
135135 static record GenericRecord <T >(int i , int j ) {}
136136}
0 commit comments