Upgrade lastnpe EEA to 2.4.0 (#4416)
For release notes, see: https://github.com/lastnpe/eclipse-null-eea-augments/releases/tag/v2.4.0 Signed-off-by: Wouter Born <github@maindrain.net>pull/4418/head
parent
1325d80343
commit
a22349abf4
|
@ -995,8 +995,8 @@ public class SmokeTest extends IntegrationTestSupport {
|
||||||
Method socketImplCreateMethod = socketImplClass.getDeclaredMethod("createPlatformSocketImpl",
|
Method socketImplCreateMethod = socketImplClass.getDeclaredMethod("createPlatformSocketImpl",
|
||||||
boolean.class);
|
boolean.class);
|
||||||
socketImplCreateMethod.setAccessible(true);
|
socketImplCreateMethod.setAccessible(true);
|
||||||
Object socketImpl = socketImplCreateMethod.invoke(/* null since we deal with static method */ null,
|
Object socketImpl = socketImplCreateMethod
|
||||||
/* server */false);
|
.invoke(/* null since we deal with static method */ giveNull(), /* server */false);
|
||||||
|
|
||||||
Constructor<?> socksSocketImplConstructor = socksSocketImplClass
|
Constructor<?> socksSocketImplConstructor = socksSocketImplClass
|
||||||
.getDeclaredConstructor(socketImplClass);
|
.getDeclaredConstructor(socketImplClass);
|
||||||
|
|
|
@ -263,8 +263,9 @@ public abstract class AbstractFileTransformationService<T> implements Transforma
|
||||||
*/
|
*/
|
||||||
protected String getLocalizedProposedFilename(String filename, final WatchService watchService) {
|
protected String getLocalizedProposedFilename(String filename, final WatchService watchService) {
|
||||||
final File file = new File(filename);
|
final File file = new File(filename);
|
||||||
if (file.getParent() != null) {
|
final String parent = file.getParent();
|
||||||
watchSubDirectory(file.getParent(), watchService);
|
if (parent != null) {
|
||||||
|
watchSubDirectory(parent, watchService);
|
||||||
}
|
}
|
||||||
|
|
||||||
String sourcePath = getSourcePath();
|
String sourcePath = getSourcePath();
|
||||||
|
|
2
pom.xml
2
pom.xml
|
@ -68,7 +68,7 @@
|
||||||
|
|
||||||
<bnd.version>7.0.0</bnd.version>
|
<bnd.version>7.0.0</bnd.version>
|
||||||
<commons.net.version>3.7.2</commons.net.version>
|
<commons.net.version>3.7.2</commons.net.version>
|
||||||
<eea.version>2.3.0</eea.version>
|
<eea.version>2.4.0</eea.version>
|
||||||
<karaf.compile.version>4.4.6</karaf.compile.version>
|
<karaf.compile.version>4.4.6</karaf.compile.version>
|
||||||
<karaf.tooling.version>4.4.6</karaf.tooling.version>
|
<karaf.tooling.version>4.4.6</karaf.tooling.version>
|
||||||
<sat.version>0.16.0</sat.version>
|
<sat.version>0.16.0</sat.version>
|
||||||
|
|
Loading…
Reference in New Issue