Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoakim Erdfelt2015-12-19 19:46:52 +0000
committerJoakim Erdfelt2015-12-19 19:46:52 +0000
commit22f9c9826da9f348c2daff039b8bfb90c984565c (patch)
tree2ad45b7e6c69b28cbb03bd4234357c1937920ecd /jetty-server
parent71150a939c49272a3b3a7c13d4f6460ba19d57f2 (diff)
downloadorg.eclipse.jetty.project-22f9c9826da9f348c2daff039b8bfb90c984565c.tar.gz
org.eclipse.jetty.project-22f9c9826da9f348c2daff039b8bfb90c984565c.tar.xz
org.eclipse.jetty.project-22f9c9826da9f348c2daff039b8bfb90c984565c.zip
Javadoc fixes
Diffstat (limited to 'jetty-server')
-rw-r--r--jetty-server/src/main/java/org/eclipse/jetty/server/ResourceCache.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/jetty-server/src/main/java/org/eclipse/jetty/server/ResourceCache.java b/jetty-server/src/main/java/org/eclipse/jetty/server/ResourceCache.java
index 6141c693a1..01f4007117 100644
--- a/jetty-server/src/main/java/org/eclipse/jetty/server/ResourceCache.java
+++ b/jetty-server/src/main/java/org/eclipse/jetty/server/ResourceCache.java
@@ -181,7 +181,7 @@ public class ResourceCache implements HttpContent.Factory
* Get either a valid entry object or create a new one if possible.
*
* @param pathInContext The key into the cache
- * @param maxBuffer The maximum buffer to allocated for this request. For cached content, a larger buffer may have
+ * @param maxBufferSize The maximum buffer to allocated for this request. For cached content, a larger buffer may have
* previously been allocated and returned by the {@link HttpContent#getDirectBuffer()} or {@link HttpContent#getIndirectBuffer()} calls.
* @return The entry matching <code>pathInContext</code>, or a new entry
* if no matching entry was found. If the content exists but is not cachable,

Back to the top