update api to support jdk 1.6
parent
d2020d8c01
commit
5cfdb10f81
|
@ -117,7 +117,7 @@ public class FileCacheQueueScheduler implements Scheduler {
|
|||
}
|
||||
|
||||
private String getFileName(String filename) {
|
||||
return filePath + task.getUUID() + "/" + filename;
|
||||
return filePath + task.getUUID() + filename;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -70,7 +70,7 @@ public class SelectorFactory {
|
|||
} else {
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
} catch (ReflectiveOperationException e) {
|
||||
} catch (Exception e) {
|
||||
throw new IllegalArgumentException("init object error", e);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
<dependency>
|
||||
<groupId>org.freemarker</groupId>
|
||||
<artifactId>freemarker</artifactId>
|
||||
<version>2.3.19</version>
|
||||
<version>2.3.15</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
|
|
Loading…
Reference in New Issue