Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ wrapper {
gradleVersion '5.2'
}

sourceCompatibility = 1.6
targetCompatibility = 1.6
sourceCompatibility = 1.8
targetCompatibility = 1.8

repositories {
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion java/com/google/re2j/Unicode.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class Unicode {
// Minimum and maximum runes involved in folding.
// Checked during test.
static final int MIN_FOLD = 0x0041;
static final int MAX_FOLD = 0x1044f;
static final int MAX_FOLD = 0x1E943;

// is32 uses binary search to test whether rune is in the specified
// slice of 32-bit ranges.
Expand Down
Loading