summaryrefslogtreecommitdiff
path: root/core/src/main/java/org/elasticsearch/index/query/RegexpFlag.java
diff options
context:
space:
mode:
authorRobert Muir <rmuir@apache.org>2015-09-21 23:35:32 -0400
committerRobert Muir <rmuir@apache.org>2015-09-21 23:35:32 -0400
commit2f67cacaa3002d1f81eb341bab00252d275e9b0a (patch)
tree75cf226259d0dcabec9bd59042ff243393c6838e /core/src/main/java/org/elasticsearch/index/query/RegexpFlag.java
parenteedb39a5a950f2685fd63524ce58c4bb321ecb36 (diff)
Fix all javadocs issues, re-enable compiler warnings (but disable on java9 where maven is broken)
Diffstat (limited to 'core/src/main/java/org/elasticsearch/index/query/RegexpFlag.java')
-rw-r--r--core/src/main/java/org/elasticsearch/index/query/RegexpFlag.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/src/main/java/org/elasticsearch/index/query/RegexpFlag.java b/core/src/main/java/org/elasticsearch/index/query/RegexpFlag.java
index 0af6b86db3..45f58c47da 100644
--- a/core/src/main/java/org/elasticsearch/index/query/RegexpFlag.java
+++ b/core/src/main/java/org/elasticsearch/index/query/RegexpFlag.java
@@ -89,9 +89,9 @@ public enum RegexpFlag {
/**
* Resolves the combined OR'ed value for the given list of regular expression flags. The given flags must follow the
* following syntax:
- * <p/>
+ * <p>
* <tt>flag_name</tt>(|<tt>flag_name</tt>)*
- * <p/>
+ * <p>
* Where <tt>flag_name</tt> is one of the following:
* <ul>
* <li>INTERSECTION</li>
@@ -102,10 +102,10 @@ public enum RegexpFlag {
* <li>NONE</li>
* <li>ALL</li>
* </ul>
- * <p/>
+ * <p>
* Example: <tt>INTERSECTION|COMPLEMENT|EMPTY</tt>
*
- * @param flags A string representing a list of regualr expression flags
+ * @param flags A string representing a list of regular expression flags
* @return The combined OR'ed value for all the flags
*/
static int resolveValue(String flags) {