We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37832b7 commit 19d445cCopy full SHA for 19d445c
1 file changed
src/main/java/org/buddycloud/channelserver/channel/Conf.java
@@ -42,12 +42,14 @@ public static String getPostChannelNodename(JID channelJID) {
42
43
/**
44
* Parses a ISO 8601 to a string
45
- *
+ *
46
* @param iso8601Str
47
* @return
48
- * @throws IllegalArgumentException if the provided string is not ISO 8601
+ * @throws IllegalArgumentException
49
+ * if the provided string is not ISO 8601
50
*/
- public static Date parseDate(String iso8601Str) throws IllegalArgumentException {
51
+ public static Date parseDate(String iso8601Str)
52
+ throws IllegalArgumentException {
53
return ISO_8601_PARSER.parseDateTime(iso8601Str).toDate();
54
}
55
0 commit comments