-
Bug
-
Résolution: Résolu
-
Mineur
-
6.00.00
-
Aucune
Il faudrait rajouter une remise à null de la liste de l'espace co en cas d'exception lors de l'initialisation.
Classe : Espacecollaboratif
Méthode : initialiserlisteEspacesCollaboratifs()
Correction :
Avant :
Espacecollaboratif.java
private static synchronized boolean initialiserlisteEspacesCollaboratifs() throws Exception { ... catch (final Exception e) { ctx.release(); throw e; } ... }
Après :
Espacecollaboratif.java
private static synchronized boolean initialiserlisteEspacesCollaboratifs() throws Exception { ... catch (final Exception e) { listeEspacesCollaboratifs = null; ctx.release(); throw e; } ... }