Skip to content

Commit 477a70d

Browse files
authored
eisop release 3.25.0-eisop1 (#408)
2 parents 360dc38 + 577c028 commit 477a70d

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

scripts/inference-dev

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ libDir="$cfiDir"/lib
3434
CFBuild="${cfDir}"/dataflow/"${classes}":"${cfDir}"/javacutil/"${classes}":"${cfDir}"/framework/"${classes}":"${cfDir}"/framework/"${resources}"
3535
CFBuild="${CFBuild}":"${cfDir}"/checker/"${classes}":"${cfDir}"/checker/"${resources}":"${annoToolsDir}"/scene-lib/bin
3636

37-
CFDepJars="${stubparserDir}"/javaparser-core/target/stubparser-3.24.2.jar:"${afuDir}"/annotation-file-utilities-all.jar
37+
CFDepJars="${stubparserDir}"/javaparser-core/target/stubparser-3.24.3.jar:"${afuDir}"/annotation-file-utilities-all.jar
3838

3939
# sanity check: ensure each jar in CFDepJars actually exists in the file system
4040
# total number of jars

src/checkers/inference/InferenceLauncher.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ public void infer() {
166166
argList.add("-Xbootclasspath/p:" + bcp);
167167
}
168168

169-
if (SystemUtil.getJreVersion() > 8) {
169+
if (SystemUtil.jreVersion > 8) {
170170
// Keep in sync with build.gradle
171171
argList.addAll(Arrays.asList("--add-exports", "jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED",
172172
"--add-exports", "jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED",

src/checkers/inference/InferenceMain.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ private void startCheckerFramework() {
167167
"-XDignore.symbol.file",
168168
"-Awarns"));
169169

170-
if (SystemUtil.getJreVersion() == 8) {
170+
if (SystemUtil.jreVersion == 8) {
171171
checkerFrameworkArgs.addAll(Arrays.asList("-source", "8", "-target", "8"));
172172
}
173173

tests/checkers/inference/test/CFInferenceTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public abstract class CFInferenceTest extends CheckerFrameworkPerFileTest {
1818
public static final boolean isAtMost7Jvm;
1919

2020
static {
21-
isAtMost7Jvm = org.checkerframework.javacutil.SystemUtil.getJreVersion() <= 1.7d;
21+
isAtMost7Jvm = SystemUtil.jreVersion <= 7;
2222
}
2323

2424
public CFInferenceTest(File testFile, Class<? extends AbstractProcessor> checker,

0 commit comments

Comments
 (0)