Skip to content

Commit 7541acd

Browse files
authored
Merge pull request #6201 from JabRef/update-gradle-to-6.3
Update gradle wrapper from 6.3-rc-3 to 6.3
2 parents 41cbd11 + d2a7162 commit 7541acd

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

gradle/wrapper/gradle-wrapper.jar

-1 Bytes
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.3-rc-3-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.3-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

src/test/java/org/jabref/model/strings/StringUtilTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ void StringUtilClassIsSmall() throws Exception {
2121
Path path = Paths.get("src", "main", "java", StringUtil.class.getName().replace('.', '/') + ".java");
2222
int lineCount = Files.readAllLines(path, StandardCharsets.UTF_8).size();
2323

24-
assertTrue(lineCount <= 749, "StringUtil increased in size to " + lineCount + ". "
24+
assertTrue(lineCount <= 756, "StringUtil increased in size to " + lineCount + ". "
2525
+ "We try to keep this class as small as possible. "
2626
+ "Thus think twice if you add something to StringUtil.");
2727
}

0 commit comments

Comments
 (0)