Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVladimir Piskarev2018-03-29 10:46:22 +0000
committerVladimir Piskarev2018-03-29 10:47:56 +0000
commit8db18e4694694fa3dee0508b6180beee02f0d568 (patch)
treea21e09058a81adddab38be729c27d26da68d2d7f
parent7c0d45e600c894de1e41fc35bbd522ce4fca99d9 (diff)
downloadorg.eclipse.handly-8db18e4694694fa3dee0508b6180beee02f0d568.tar.gz
org.eclipse.handly-8db18e4694694fa3dee0508b6180beee02f0d568.tar.xz
org.eclipse.handly-8db18e4694694fa3dee0508b6180beee02f0d568.zip
Fix malformed HTML in javadocs
-rw-r--r--org.eclipse.handly/src/org/eclipse/handly/model/impl/support/ElementCache.java2
-rw-r--r--org.eclipse.handly/src/org/eclipse/handly/util/BoundedLruCache.java4
2 files changed, 3 insertions, 3 deletions
diff --git a/org.eclipse.handly/src/org/eclipse/handly/model/impl/support/ElementCache.java b/org.eclipse.handly/src/org/eclipse/handly/model/impl/support/ElementCache.java
index c151d168..2f80cfe8 100644
--- a/org.eclipse.handly/src/org/eclipse/handly/model/impl/support/ElementCache.java
+++ b/org.eclipse.handly/src/org/eclipse/handly/model/impl/support/ElementCache.java
@@ -46,7 +46,7 @@ public class ElementCache
* with initial {@link #getLoadFactor() load factor} of one third.
*
* @param maxSize the maximum size of the cache (the bound)
- * @throws IllegalArgumentException if <code>maxSize < 1</code>
+ * @throws IllegalArgumentException if <code>maxSize &lt; 1</code>
*/
public ElementCache(int maxSize)
{
diff --git a/org.eclipse.handly/src/org/eclipse/handly/util/BoundedLruCache.java b/org.eclipse.handly/src/org/eclipse/handly/util/BoundedLruCache.java
index 1dfd9714..61711795 100644
--- a/org.eclipse.handly/src/org/eclipse/handly/util/BoundedLruCache.java
+++ b/org.eclipse.handly/src/org/eclipse/handly/util/BoundedLruCache.java
@@ -28,7 +28,7 @@ public class BoundedLruCache<K, V>
* Constructs a bounded LRU cache that is initially empty.
*
* @param maxSize the maximum size of the cache (the bound)
- * @throws IllegalArgumentException if <code>maxSize < 1</code>
+ * @throws IllegalArgumentException if <code>maxSize &lt; 1</code>
*/
public BoundedLruCache(int maxSize)
{
@@ -53,7 +53,7 @@ public class BoundedLruCache<K, V>
* by invoking {@link #makeSpace}.
*
* @param maxSize a new value for maximum size of the cache
- * @throws IllegalArgumentException if <code>maxSize < 1</code>
+ * @throws IllegalArgumentException if <code>maxSize &lt; 1</code>
*/
public final void setMaxSize(int maxSize)
{

Back to the top