Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJulian Honnen2020-02-17 07:33:58 +0000
committerNoopur Gupta2020-02-17 10:58:34 +0000
commit04350c54d7ad28a9113caced2d4650414a47e120 (patch)
tree677455d883ef3fe551ef009415c262d6f6c900c5
parent6168e4f118f413a7d29228156d2ca29b87548b38 (diff)
downloadeclipse.jdt.core-04350c54d7ad28a9113caced2d4650414a47e120.tar.gz
eclipse.jdt.core-04350c54d7ad28a9113caced2d4650414a47e120.tar.xz
eclipse.jdt.core-04350c54d7ad28a9113caced2d4650414a47e120.zip
Bug 547510 - fixed javadoc errors in getSubWordMatchingRegionsI20200217-0600
Change-Id: I13a8c0099c610f7cb7811f76c0ade90b80f469d3 Signed-off-by: Julian Honnen <julian.honnen@vector.com>
-rw-r--r--org.eclipse.jdt.core/compiler/org/eclipse/jdt/core/compiler/CharOperation.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/org.eclipse.jdt.core/compiler/org/eclipse/jdt/core/compiler/CharOperation.java b/org.eclipse.jdt.core/compiler/org/eclipse/jdt/core/compiler/CharOperation.java
index 45d270c20f..de9d9e79fe 100644
--- a/org.eclipse.jdt.core/compiler/org/eclipse/jdt/core/compiler/CharOperation.java
+++ b/org.eclipse.jdt.core/compiler/org/eclipse/jdt/core/compiler/CharOperation.java
@@ -770,12 +770,12 @@ public static final boolean subWordMatch(char[] pattern, char[] name) {
* Each of these regions is made of its starting index and its length in the given
* name. They are all concatenated in a single array of <code>int</code>
* which therefore always has an even length.
- * </p><p>
+ * <p>
* Note that each region is disjointed from the following one.<br>
* E.g. if the regions are <code>{ start1, length1, start2, length2 }</code>,
* then <code>start1+length1</code> will always be smaller than
* <code>start2</code>.
- * </p><p>
+ * <p>
* Examples:
* <ol>
* <li><pre>
@@ -784,7 +784,6 @@ public static final boolean subWordMatch(char[] pattern, char[] name) {
* result: { 0, 6, 10, 3 }
* </pre></li>
* </ol>
- * </p>
*
* @see CharOperation#subWordMatch(char[], char[])
* for more details on the subword behavior

Back to the top