Skip to content

Commit 33cc4ed

Browse files
committed
fix javadoc problem
1 parent f46652c commit 33cc4ed

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/com/danga/MemCached/MemCachedClient.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -135,14 +135,14 @@
135135
* <pre>
136136
* MemCachedClient mc = new MemCachedClient();
137137
* String[] keys = { "key", "key1", "key2" };
138-
* Map<Object> values = mc.getMulti(keys);
138+
* Map&lt;Object&gt; values = mc.getMulti(keys);
139139
* </pre>
140140
* <h3>To retrieve an multiple objects from the cache with custom hashing</h3>
141141
* <pre>
142142
* MemCachedClient mc = new MemCachedClient();
143143
* String[] keys = { "key", "key1", "key2" };
144144
* Integer[] hashes = { new Integer(45), new Integer(32), new Integer(44) };
145-
* Map<Object> values = mc.getMulti(keys, hashes);
145+
* Map&lt;Object&gt; values = mc.getMulti(keys, hashes);
146146
* </pre>
147147
* <h3>To flush all items in server(s)</h3>
148148
* <pre>
@@ -228,11 +228,11 @@ public MemCachedClient( ClassLoader classLoader ) {
228228
* This enables compression and sets compression threshhold to 15 KB.
229229
*/
230230
private void init() {
231-
this.primitiveAsString = false;
232-
this.compressEnable = true;
233-
this.compressThreshold = COMPRESS_THRESH;
234-
this.defaultEncoding = "UTF-8";
235-
this.poolName = "default";
231+
this.primitiveAsString = false;
232+
this.compressEnable = true;
233+
this.compressThreshold = COMPRESS_THRESH;
234+
this.defaultEncoding = "UTF-8";
235+
this.poolName = "default";
236236
}
237237

238238
/**

0 commit comments

Comments
 (0)