Skip to content

Commit f0c86dc

Browse files
committed
satisfies javadoc generation in Java-8
1 parent ac4f75f commit f0c86dc

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

calendar/src/main/java/net/time4j/calendar/EthiopianCalendar.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -116,8 +116,8 @@
116116
* .addText(EthiopianCalendar.EVANGELIST)
117117
* .addPattern(") G", PatternType.NON_ISO_DATE)
118118
* .build();
119-
* EthiopianCalendar ethio =
120-
* formatter.parse("ጥቅምት 11 ፲፱፻፺፯ (ማቴዎስ) ዓ/ም");
119+
* String input = "ጥቅምት 11 ፲፱፻፺፯ (ማቴዎስ) ዓ/ም";
120+
* EthiopianCalendar ethio = formatter.parse(input);
121121
* System.out.println(ethio); // AMETE_MIHRET-1997-02-11
122122
* </pre>
123123
*
@@ -170,8 +170,8 @@
170170
* .addText(EthiopianCalendar.EVANGELIST)
171171
* .addPattern(&quot;) G&quot;, PatternType.NON_ISO_DATE)
172172
* .build();
173-
* EthiopianCalendar ethio =
174-
* formatter.parse(&quot;&#4901;&#4677;&#4637;&#4725; 11 &#4978;&#4977;&#4987;&#4986;&#4975; (&#4635;&#4724;&#4814;&#4661;) &#4819;/&#4637;&quot;);
173+
* String input = &quot;&amp;#4901;&amp;#4677;&amp;#4637;&amp;#4725; 11 &amp;#4978;&amp;#4977;&amp;#4987;&amp;#4986;&amp;#4975; (&amp;#4635;&amp;#4724;&amp;#4814;&amp;#4661;) &amp;#4819;/&amp;#4637;&quot;;
174+
* EthiopianCalendar ethio = formatter.parse(input);
175175
* System.out.println(ethio); // AMETE_MIHRET-1997-02-11
176176
* </pre>
177177
*

calendar/src/main/java/net/time4j/calendar/EthiopianTime.java

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,8 @@
5757
* <p>Represents the 12-hour-time in second precision used in Ethiopia
5858
* starting in the morning at 6 AM as zero point. </p>
5959
*
60-
* <p>Mapping table: </p>
61-
*
6260
* <table border="1">
61+
* <caption>Mapping table</caption>
6362
* <tr>
6463
* <th>ISO-8601</th>
6564
* <th>Ethiopic</th>
@@ -170,9 +169,8 @@
170169
* <p>Repr&auml;sentiert die 12-Stunden-Uhr in Sekundengenauigkeit, die in &Auml;thiopien verwendet wird
171170
* und morgens um 6 Uhr startet. </p>
172171
*
173-
* <p>Konversionstabelle: </p>
174-
*
175172
* <table border="1">
173+
* <caption>Konversionstabelle</caption>
176174
* <tr>
177175
* <th>ISO-8601</th>
178176
* <th>&Auml;thiopisch</th>

0 commit comments

Comments
 (0)