From a83a9a61fddf05d6c1eebb3d5ab0faf5249a3d17 Mon Sep 17 00:00:00 2001 From: ortizh Date: Tue, 21 May 2019 16:12:32 +0200 Subject: [PATCH] fix bug (spies do not work) --- .../java/fr/ill/ics/core/property/PropertyManager.java | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/main/java/fr/ill/ics/core/property/PropertyManager.java b/src/main/java/fr/ill/ics/core/property/PropertyManager.java index 2117401..593fbca 100644 --- a/src/main/java/fr/ill/ics/core/property/PropertyManager.java +++ b/src/main/java/fr/ill/ics/core/property/PropertyManager.java @@ -234,8 +234,14 @@ public class PropertyManager { } ConfigManager.getInstance().initControllerProperties(controllerType); + + /***** AVANT : les spies marchent ****/ + clientFilesFoundPerControllerType.put(controllerType, true); + return true; +/* + APRES c'est pour le multiclient !!!! clientFilesFoundPerControllerType.put(controllerType, !(files == null || files.length == 0)); - return clientFilesFoundPerControllerType.get(controllerType); + return clientFilesFoundPerControllerType.get(controllerType);*/ } -- GitLab