mirror of
https://github.com/danieldemus/openhab-core.git
synced 2025-01-10 13:21:53 +01:00
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>
This commit is contained in:
parent
1325d80343
commit
a22349abf4
@ -995,8 +995,8 @@ public class SmokeTest extends IntegrationTestSupport {
|
||||
Method socketImplCreateMethod = socketImplClass.getDeclaredMethod("createPlatformSocketImpl",
|
||||
boolean.class);
|
||||
socketImplCreateMethod.setAccessible(true);
|
||||
Object socketImpl = socketImplCreateMethod.invoke(/* null since we deal with static method */ null,
|
||||
/* server */false);
|
||||
Object socketImpl = socketImplCreateMethod
|
||||
.invoke(/* null since we deal with static method */ giveNull(), /* server */false);
|
||||
|
||||
Constructor<?> socksSocketImplConstructor = socksSocketImplClass
|
||||
.getDeclaredConstructor(socketImplClass);
|
||||
|
@ -263,8 +263,9 @@ public abstract class AbstractFileTransformationService<T> implements Transforma
|
||||
*/
|
||||
protected String getLocalizedProposedFilename(String filename, final WatchService watchService) {
|
||||
final File file = new File(filename);
|
||||
if (file.getParent() != null) {
|
||||
watchSubDirectory(file.getParent(), watchService);
|
||||
final String parent = file.getParent();
|
||||
if (parent != null) {
|
||||
watchSubDirectory(parent, watchService);
|
||||
}
|
||||
|
||||
String sourcePath = getSourcePath();
|
||||
|
2
pom.xml
2
pom.xml
@ -68,7 +68,7 @@
|
||||
|
||||
<bnd.version>7.0.0</bnd.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.tooling.version>4.4.6</karaf.tooling.version>
|
||||
<sat.version>0.16.0</sat.version>
|
||||
|
Loading…
Reference in New Issue
Block a user