Skip to content
Merged
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
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -724,6 +724,11 @@ daikon.tar daikon.zip: kvasir ${README_PATHS} ${DAIKON_JAVA_FILES} java/Makefile
cp -pf ${TMPDIR}/${NEW_RELEASE_NAME}.zip .


# Always delegate to the other Makefile.
.PHONY: java/ChicoryPremain.jar
java/ChicoryPremain.jar:
${MAKE} -C java ChicoryPremain.jar

### Front end binaries

## (empty for now)
Expand Down
1 change: 1 addition & 0 deletions java/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ endif
OS_ID := $(shell sed -n -e 's/^NAME="\(.*\)"/\1/p' /etc/os-release)
OS_REL := $(shell sed -n -e 's/^VERSION_ID="\(.*\)"/\1/p' /etc/os-release)

## TODO: It would be better to use "-target 8" for all files EXCEPT those ending in "24.java".
# Users can set JAVAC_TARGET_FLAGS, taking precedence over these settings.
# Use "--source 25 --target 25" because Java 25 is an LTS version.
ifeq (${JAVA25}, 1)
Expand Down
2 changes: 1 addition & 1 deletion java/daikon/dcomp/BuildJDK.java
Original file line number Diff line number Diff line change
Expand Up @@ -502,7 +502,7 @@ private void instrumentClassFile(
_numFilesProcessed++;
if (((_numFilesProcessed % 100) == 0) && (System.console() != null)) {
System.out.printf(
"Processed %d/%d classes at %s%n",
"Note: Processed %d/%d classes at %s%n",
_numFilesProcessed,
classTotal,
LocalDateTime.now(ZoneId.systemDefault()).format(timeFormatter));
Expand Down
1 change: 1 addition & 0 deletions tests/sources/junit/framework/TestResult.java
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ public synchronized int runCount() {
/**
* Runs a TestCase.
*/
@SuppressWarnings("removal")
public void runProtected(final Test test, Protectable p) {
try {
p.protect();
Expand Down