Skip to content

Commit 2036c74

Browse files
committed
javadoc cleanup
1 parent a9afe35 commit 2036c74

File tree

3 files changed

+1
-4
lines changed

3 files changed

+1
-4
lines changed

jflex/src/main/java/jflex/core/IntCharSet.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -498,7 +498,7 @@ public IntCharSet copy() {
498498
* does probably not implement the contract for {@link Comparable#compareTo} correctly if the sets
499499
* have the same smallest element but are not equal.
500500
*
501-
* @param the IntCharSet to compare to
501+
* @param o the IntCharSet to compare to
502502
* @return 0 if the parameter is equal, -1 if its smallest element (if any) is larger than the
503503
* smallest element of this set, and +1 if it is larger.
504504
*/

jflex/src/main/java/jflex/core/RegExp.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,6 @@ public static final String revString(String s) {
176176
/**
177177
* Recursively convert tilde (upto) expressions into negation and star.
178178
*
179-
* @param macros the macro table for expansion.
180179
* @return new RegExp equivalent to the current one, but without upto expressions.
181180
*/
182181
public final RegExp resolveTilde() {
@@ -410,7 +409,6 @@ public final void makeCCLs(CharClasses c, boolean caseless) {
410409
* Create a new regexp that matches the reverse text of this one.
411410
*
412411
* @return the reverse regexp
413-
* @param macros a {@link Macros} object.
414412
*/
415413
public final RegExp rev() {
416414
RegExp1 unary;

jflex/src/main/java/jflex/core/SemCheck.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ public final class SemCheck {
2525
* <p>Currently checks for empty expressions only.
2626
*
2727
* @param rs the reg exps to be checked
28-
* @param m the macro table (in expanded form)
2928
* @param f the spec file containing the rules
3029
*/
3130
public static void check(RegExps rs, File f) {

0 commit comments

Comments
 (0)