Author: echatellier Date: 2015-09-29 18:46:43 +0200 (Tue, 29 Sep 2015) New Revision: 4301 Url: http://forge.codelutin.com/projects/isis-fish/repository/revisions/4301 Log: Fix broken javadoc Modified: trunk/pom.xml trunk/src/test/java/fr/ifremer/isisfish/logging/LoggerHelper.java trunk/src/test/java/fr/ifremer/isisfish/mexico/MexicoHelperTest.java trunk/src/test/java/fr/ifremer/isisfish/simulator/sensitivity/domain/ContinuousDomainTest.java Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2015-09-29 15:25:33 UTC (rev 4300) +++ trunk/pom.xml 2015-09-29 16:46:43 UTC (rev 4301) @@ -576,6 +576,8 @@ <releaseEmailDomain>forge.codelutin.com</releaseEmailDomain> <releaseEmail>noreply@forge.codelutin.com</releaseEmail> + <!-- https://issues.apache.org/jira/browse/MJAVADOC-418 --> + <javadocPluginVersion>2.10.3</javadocPluginVersion> <!-- jnlp (disabled until retested) <keystorepath>${codelutin.keystorepath}</keystorepath> <keystorealias>CodeLutin</keystorealias> Modified: trunk/src/test/java/fr/ifremer/isisfish/logging/LoggerHelper.java =================================================================== --- trunk/src/test/java/fr/ifremer/isisfish/logging/LoggerHelper.java 2015-09-29 15:25:33 UTC (rev 4300) +++ trunk/src/test/java/fr/ifremer/isisfish/logging/LoggerHelper.java 2015-09-29 16:46:43 UTC (rev 4301) @@ -238,20 +238,20 @@ /** * This is a log record (says an entry of a log file). This is abstracted from any * logging implementation. - * <p/> + * * To deal with log, we don't use string version stored in original log file, * prefer use serialized form of a LogRecord : we keep a lot of time when using * them to display them in ui, and for filtering process too. - * <p/> + * * The LogRecord unicity is base on two properties : * <ul> * <li>timestamp</li> * <li>message</li> * </ul> - * <p/> + * * We can not use only timestamp, more than one event could appear in a same * timestamp. - * <p/> + * * TODO Put this code in lutinLog ? * * @author chemit @@ -282,7 +282,7 @@ /** * the string represention of logEvent, transient since we use a lazy getter * we don't need to store it. - * <p/> + * * <b>(if not transient : double the size of serialized form...)</b> */ protected transient String text; @@ -289,7 +289,7 @@ /** * the offset of logRecord in stream. - * <p/> + * * This is a transient property, since we compute this value when getting * the LogRecord from stream */ Modified: trunk/src/test/java/fr/ifremer/isisfish/mexico/MexicoHelperTest.java =================================================================== --- trunk/src/test/java/fr/ifremer/isisfish/mexico/MexicoHelperTest.java 2015-09-29 15:25:33 UTC (rev 4300) +++ trunk/src/test/java/fr/ifremer/isisfish/mexico/MexicoHelperTest.java 2015-09-29 16:46:43 UTC (rev 4301) @@ -443,9 +443,7 @@ * @throws IsisFishException * @throws TopiaException * - * This test may fail because of testPercentageMinMaxFactor(fr.ifremer.isisfish.mexico.MexicoHelperTest) Time elapsed: 0.528 sec <<< FAILURE! - * org.junit.ComparisonFailure: expected:<...="Tue Jun 10 18:54:3[5] CEST 2014" id=""> - * ...> but was:<...="Tue Jun 10 18:54:3[6] CEST 2014" id=""> + * This test may fail because of date delay by one seconds due to slow testing */ //@Test public void testPercentageMinMaxFactor() throws IOException, IsisFishException, TopiaException { Modified: trunk/src/test/java/fr/ifremer/isisfish/simulator/sensitivity/domain/ContinuousDomainTest.java =================================================================== --- trunk/src/test/java/fr/ifremer/isisfish/simulator/sensitivity/domain/ContinuousDomainTest.java 2015-09-29 15:25:33 UTC (rev 4300) +++ trunk/src/test/java/fr/ifremer/isisfish/simulator/sensitivity/domain/ContinuousDomainTest.java 2015-09-29 16:46:43 UTC (rev 4301) @@ -50,7 +50,7 @@ /** * Test jdistlib pour verifier que les parametres sont bien compris en compte. * - * Ici : valeurs négatives non gérées correctement (min > max). + * Ici : valeurs négatives non gérées correctement (min > max). */ @Test public void testJDistLib2() {