Skip to content

Commit

Permalink
V3.8-HotFix#02
Browse files Browse the repository at this point in the history
1.Change OracleJDK to OpenJDK again
2.Suitable to OpenJDK
  • Loading branch information
sandtechnology committed Jun 29, 2019
1 parent 9481a1f commit 0d3146f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
language: java
jdk: oraclejdk8
jdk: openjdk8
install:
- sudo apt-get install ant
script: ant all
Expand Down
3 changes: 1 addition & 2 deletions src/io/BATFileVisitor.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package io;

import com.sun.istack.internal.Nullable;
import io.item.ItemLibrary;
import io.item.LocalizableItem;

Expand All @@ -26,7 +25,7 @@ public FileVisitResult visitFileFailed(Path file, IOException exc) {
return FileVisitResult.CONTINUE;
}

public static LinkedList<LocalizableItem> visit(@Nullable BATFileVisitor visitor, Path... paths) throws IOException {
public static LinkedList<LocalizableItem> visit(BATFileVisitor visitor, Path... paths) throws IOException {
if (visitor == null) {
visitor = new BATFileVisitor();
}
Expand Down

0 comments on commit 0d3146f

Please sign in to comment.