File tree Expand file tree Collapse file tree 5 files changed +12
-11
lines changed
src/main/java/org/checkerframework/checker Expand file tree Collapse file tree 5 files changed +12
-11
lines changed Original file line number Diff line number Diff line change @@ -11,8 +11,8 @@ source "$SCRIPTDIR"/clone-related.sh
11
11
# Download dependencies, trying a second time if there is a failure.
12
12
# echo "NO_WRITE_VERIFICATION_METADATA=$NO_WRITE_VERIFICATION_METADATA"
13
13
if [ -z " ${NO_WRITE_VERIFICATION_METADATA+x} " ]; then
14
- (TERM=dumb timeout 300 ./gradlew --write-verification-metadata sha256 help --dry-run \
15
- || (sleep 1m && TERM=dumb timeout 300 ./gradlew --write-verification-metadata sha256 help --dry-run) )
14
+ (date && TERM=dumb timeout 300 ./gradlew --write-verification-metadata sha256 help --dry-run) \
15
+ || (sleep 1m && date && TERM=dumb timeout 300 ./gradlew --write-verification-metadata sha256 help --dry-run)
16
16
fi
17
17
echo " running \" ./gradlew assemble\" for checker-framework"
18
18
./gradlew assemble --console=plain -Dorg.gradle.internal.http.socketTimeout=60000 -Dorg.gradle.internal.http.connectionTimeout=60000
Original file line number Diff line number Diff line change @@ -19,10 +19,10 @@ if [ -n "$CHANGED_JAVA_FILES" ]; then
19
19
if [ " $BRANCH " = " master" ]; then
20
20
git diff --staged > /tmp/diff.txt
21
21
./gradlew --stacktrace getPlumeScripts
22
- (./gradlew requireJavadoc > /tmp/warnings-rjp .txt 2>&1 ) || true
23
- checker/bin-devel/.plume-scripts/lint-diff.py --guess-strip /tmp/diff.txt /tmp/warnings-rjp .txt
24
- (./gradlew javadocDoclintAll > /tmp/warnings-jda .txt 2>&1 ) || true
25
- checker/bin-devel/.plume-scripts/lint-diff.py --guess-strip /tmp/diff.txt /tmp/warnings-jda .txt
22
+ (./gradlew requireJavadoc > /tmp/warnings-requireJavadoc .txt 2>&1 ) || true
23
+ checker/bin-devel/.plume-scripts/lint-diff.py --guess-strip /tmp/diff.txt /tmp/warnings-requireJavadoc .txt
24
+ (./gradlew javadocDoclintAll > /tmp/warnings-javadocDoclintAll .txt 2>&1 ) || true
25
+ checker/bin-devel/.plume-scripts/lint-diff.py --guess-strip /tmp/diff.txt /tmp/warnings-javadocDoclintAll .txt
26
26
fi
27
27
fi
28
28
Original file line number Diff line number Diff line change @@ -37,10 +37,10 @@ make style-check --jobs="$(getconf _NPROCESSORS_ONLN)"
37
37
if [ -f SKIP-REQUIRE-JAVADOC ]; then
38
38
echo " Skipping requireJavadoc because file SKIP-REQUIRE-JAVADOC exists."
39
39
else
40
- (./gradlew requireJavadoc --console=plain --warning-mode=all > /tmp/warnings-rjp .txt 2>&1 ) || true
41
- " $PLUME_SCRIPTS " /ci-lint-diff /tmp/warnings-rjp .txt || status=1
42
- (./gradlew javadocDoclintAll --console=plain --warning-mode=all > /tmp/warnings-jda .txt 2>&1 ) || true
43
- " $PLUME_SCRIPTS " /ci-lint-diff /tmp/warnings-jda .txt || status=1
40
+ (./gradlew requireJavadoc --console=plain --warning-mode=all > /tmp/warnings-requireJavadoc .txt 2>&1 ) || true
41
+ " $PLUME_SCRIPTS " /ci-lint-diff /tmp/warnings-requireJavadoc .txt || status=1
42
+ (./gradlew javadocDoclintAll --console=plain --warning-mode=all > /tmp/warnings-javadocDoclintAll .txt 2>&1 ) || true
43
+ " $PLUME_SCRIPTS " /ci-lint-diff /tmp/warnings-javadocDoclintAll .txt || status=1
44
44
fi
45
45
if [ $status -ne 0 ]; then exit $status ; fi
46
46
Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ protected DependentTypesHelper createDependentTypesHelper() {
74
74
75
75
/**
76
76
* The Substring Index qualifier hierarchy. The hierarchy consists of a top element {@link
77
- * UNKNOWN} of type {@link SubstringIndexUnknown}, bottom element {@link BOTTOM} of type {@link
77
+ * # UNKNOWN} of type {@link SubstringIndexUnknown}, bottom element {@link # BOTTOM} of type {@link
78
78
* SubstringIndexBottom}, and elements of type {@link SubstringIndexFor} that follow the subtyping
79
79
* relation of {@link UBQualifier}.
80
80
*/
Original file line number Diff line number Diff line change 3
3
import javax .lang .model .type .TypeMirror ;
4
4
import org .checkerframework .checker .calledmethods .CalledMethodsAnalysis ;
5
5
import org .checkerframework .checker .calledmethods .CalledMethodsAnnotatedTypeFactory ;
6
+ import org .checkerframework .checker .resourceleak .ResourceLeakChecker ;
6
7
import org .checkerframework .checker .resourceleak .SetOfTypes ;
7
8
8
9
/**
You can’t perform that action at this time.
0 commit comments