Skip to content
Snippets Groups Projects
Commit f780906f authored by Raphael GIRARDOT's avatar Raphael GIRARDOT
Browse files

some code cleaning

parent c5336c82
Branches
No related tags found
No related merge requests found
...@@ -174,7 +174,7 @@ public class XMLContextManagerImpl extends XMLDataManager<Context, Context> impl ...@@ -174,7 +174,7 @@ public class XMLContextManagerImpl extends XMLDataManager<Context, Context> impl
String path = VCProperties.get(ContextData.PATH_PROPERTY_XML_TAG); String path = VCProperties.get(ContextData.PATH_PROPERTY_XML_TAG);
String isModified_s = VCProperties.get(ContextData.IS_MODIFIED_PROPERTY_XML_TAG); String isModified_s = VCProperties.get(ContextData.IS_MODIFIED_PROPERTY_XML_TAG);
boolean isModified = GUIUtilities.StringToBoolean(isModified_s); boolean isModified = GUIUtilities.stringToBoolean(isModified_s);
if (creationDate_s != null) { if (creationDate_s != null) {
Date creationDate = Date.valueOf(creationDate_s); Date creationDate = Date.valueOf(creationDate_s);
......
...@@ -277,7 +277,7 @@ public class SnapshotXMLHelper { ...@@ -277,7 +277,7 @@ public class SnapshotXMLHelper {
String comment_s = VCProperties.get(SnapshotData.COMMENT_PROPERTY_XML_TAG); String comment_s = VCProperties.get(SnapshotData.COMMENT_PROPERTY_XML_TAG);
String path_s = VCProperties.get(SnapshotData.PATH_PROPERTY_XML_TAG); String path_s = VCProperties.get(SnapshotData.PATH_PROPERTY_XML_TAG);
String isModified_s = VCProperties.get(SnapshotData.IS_MODIFIED_PROPERTY_XML_TAG); String isModified_s = VCProperties.get(SnapshotData.IS_MODIFIED_PROPERTY_XML_TAG);
boolean isModified = GUIUtilities.StringToBoolean(isModified_s); boolean isModified = GUIUtilities.stringToBoolean(isModified_s);
if (time_s != null) { if (time_s != null) {
Timestamp time = Timestamp.valueOf(time_s); Timestamp time = Timestamp.valueOf(time_s);
viewConfData.setTime(time); viewConfData.setTime(time);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment