Skip to content

Commit

Permalink
Merge branch 'dev' into #73.Support_for_character_classes
Browse files Browse the repository at this point in the history
# Conflicts:
#	src/main/java/com/github/curiousoddman/rgxgen/util/Util.java
  • Loading branch information
curious-odd-man committed May 28, 2023
2 parents 42287f6 + 6facbc4 commit e8337ae
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions src/main/java/com/github/curiousoddman/rgxgen/util/Util.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@
limitations under the License.
/* **************************************************************************/

import lombok.experimental.UtilityClass;

import java.math.BigInteger;
import java.util.*;

/**
* Utility methods collection
*/
@UtilityClass
public final class Util {
public static final Character[] ZERO_LENGTH_CHARACTER_ARRAY = new Character[0];
public static final BigInteger BIG_INTEGER_TWO = BigInteger.valueOf(2);
Expand Down Expand Up @@ -122,10 +122,4 @@ public static Set<String> makeVariations(List<String> originalTexts, char charac
}
return result;
}

/**
* Utility class can't be instantiated
*/
private Util() {
}
}

0 comments on commit e8337ae

Please sign in to comment.