You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lo...@apache.org on 2019/09/04 08:59:56 UTC

[myfaces-tobago] 01/04: checkstyle

This is an automated email from the ASF dual-hosted git repository.

lofwyr pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/myfaces-tobago.git

commit 7f2990cc3999a51f0cd4e0d1fb02a0f1a92aac21
Author: Udo Schnurpfeil <lo...@apache.org>
AuthorDate: Thu Aug 29 10:03:04 2019 +0200

    checkstyle
---
 .../main/java/org/apache/myfaces/tobago/convert/DurationConverter.java | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/tobago-core/src/main/java/org/apache/myfaces/tobago/convert/DurationConverter.java b/tobago-core/src/main/java/org/apache/myfaces/tobago/convert/DurationConverter.java
index e502450..d56e93d 100644
--- a/tobago-core/src/main/java/org/apache/myfaces/tobago/convert/DurationConverter.java
+++ b/tobago-core/src/main/java/org/apache/myfaces/tobago/convert/DurationConverter.java
@@ -44,8 +44,9 @@ import java.util.StringTokenizer;
  * <li>ss</li>
  * </ul>
  * There may be an optional attribute "unit" in the component, which allows to set the unit of the model.
- * The default unit is "millis". Examples:
+ * The default unit is "millis".
  * <table>
+ *   <caption>Examples</caption>
  *   <tr><th>input string</th><th>unit</th><th>resulting long in model</th><th>Remark</th></tr>
  *   <tr><td>1:15</td><td>milli</td><td>75000</td><td></td></tr>
  *   <tr><td>1:15:00</td><td>hour</td><td>1</td><td>Loosing 15 Minutes!</td></tr>