Enum entry delimiters / super constructors: a few remaining warnings removed

This commit is contained in:
Mikhail Glukhikh
2015-05-19 16:45:11 +03:00
parent 5b14d5be28
commit 1389b62fa4
3 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -24,12 +24,12 @@ import java.util.ArrayList
*/
public enum class RegexOption(val value: String) {
/** Enables case-insensitive matching. */
IGNORE_CASE : RegexOption("i")
IGNORE_CASE("i"),
/** Enables multiline mode.
*
* In multiline mode the expressions `^` and `$` match just after or just before,
* respectively, a line terminator or the end of the input sequence. */
MULTILINE : RegexOption("m")
MULTILINE("m")
}