r3193 - isis-fish/branches/3.3.1/src/main/java/fr/ifremer/isisfish/datastore
Author: chatellier Date: 2011-03-22 14:47:37 +0000 (Tue, 22 Mar 2011) New Revision: 3193 Log: Fix i18n parsing Modified: isis-fish/branches/3.3.1/src/main/java/fr/ifremer/isisfish/datastore/SimulationStorage.java Modified: isis-fish/branches/3.3.1/src/main/java/fr/ifremer/isisfish/datastore/SimulationStorage.java =================================================================== --- isis-fish/branches/3.3.1/src/main/java/fr/ifremer/isisfish/datastore/SimulationStorage.java 2011-03-22 14:47:17 UTC (rev 3192) +++ isis-fish/branches/3.3.1/src/main/java/fr/ifremer/isisfish/datastore/SimulationStorage.java 2011-03-22 14:47:37 UTC (rev 3193) @@ -362,8 +362,7 @@ parameter = new SimulationParameterImpl(); parameter.fromProperties(prop); } catch (IOException eee) { - throw new IsisFishRuntimeException(_( - "isisfish.error.read.simulation.parameters", file), eee); + throw new IsisFishRuntimeException(_("isisfish.error.read.simulation.parameters", file), eee); } } return this.parameter; @@ -392,8 +391,7 @@ parameter = new SimulationParameterImpl(); parameter.fromProperties(prop); } catch (IOException eee) { - throw new IsisFishRuntimeException(_( - "isisfish.error.read.simulation.parameters", file), eee); + throw new IsisFishRuntimeException(_("isisfish.error.read.simulation.parameters", file), eee); } return this.parameter; }
participants (1)
-
chatellierï¼ users.labs.libre-entreprise.org