Skip to content

Commit 92129e6

Browse files
committed
some javadoc cleanup, version numbers, and copyright
1 parent b146120 commit 92129e6

File tree

6 files changed

+24
-24
lines changed

6 files changed

+24
-24
lines changed

src/com/danga/MemCached/ContextObjectInputStream.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* MemCached Java client
3-
* Copyright (c) 2005
3+
* Copyright (c) 2007
44
*
55
* This library is free software; you can redistribute it and/or
66
* modify it under the terms of the GNU Lesser General Public
@@ -25,7 +25,7 @@
2525
* class loader.
2626
*
2727
* @author Vin Chawla <[email protected]>
28-
* @version 1.3.2
28+
* @version 1.5
2929
*/
3030
package com.danga.MemCached;
3131

src/com/danga/MemCached/Logger.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* MemCached Java Client Logger
3-
* Copyright (c) 2005
3+
* Copyright (c) 2007
44
*
55
* This module is Copyright (c) 2005 Greg Whalin
66
* All rights reserved.
@@ -22,7 +22,7 @@
2222
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
2323
*
2424
* @author Greg Whalin <[email protected]>
25-
* @version 1.3.2
25+
* @version 1.5
2626
*/
2727
package com.danga.MemCached;
2828

@@ -36,7 +36,7 @@
3636
* log levels, but only wraps system.out.println.
3737
*
3838
* @author Greg Whalin <[email protected]>
39-
* @version 1.3.2
39+
* @version 1.5
4040
*/
4141
public class Logger {
4242

src/com/danga/MemCached/MemCachedClient.java

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
22
* MemCached Java client
3-
* Copyright (c) 2005
3+
* Copyright (c) 2007
44
*
5-
* This module is Copyright (c) 2005 Greg Whalin, Richard Russo
5+
* This module is Copyright (c) 2007 Greg Whalin, Richard Russo
66
* All rights reserved.
77
*
88
* This library is free software; you can redistribute it and/or
@@ -26,7 +26,7 @@
2626
* @author Kevin Burton <[email protected]>
2727
* @author Robert Watts <[email protected]>
2828
* @author Vin Chawla <[email protected]>
29-
* @version 1.3.2
29+
* @version 1.5
3030
*/
3131
package com.danga.MemCached;
3232

@@ -133,15 +133,15 @@
133133
* <h3>To retrieve an multiple objects from the cache</h3>
134134
* <pre>
135135
* MemCachedClient mc = new MemCachedClient();
136-
* String[] keys = { "key", "key1", "key2" };
137-
* Object value = mc.getMulti(keys);
136+
* String[] keys = { "key", "key1", "key2" };
137+
* Map<Object> values = mc.getMulti(keys);
138138
* </pre>
139139
* <h3>To retrieve an multiple objects from the cache with custom hashing</h3>
140140
* <pre>
141141
* MemCachedClient mc = new MemCachedClient();
142-
* String[] keys = { "key", "key1", "key2" };
143-
* Integer[] hashes = { new Integer(45), new Integer(32), new Integer(44) };
144-
* Object value = mc.getMulti(keys, hashes);
142+
* String[] keys = { "key", "key1", "key2" };
143+
* Integer[] hashes = { new Integer(45), new Integer(32), new Integer(44) };
144+
* Map<Object> values = mc.getMulti(keys, hashes);
145145
* </pre>
146146
* <h3>To flush all items in server(s)</h3>
147147
* <pre>
@@ -159,7 +159,7 @@
159159
* @author Kevin Burton <[email protected]>
160160
* @author Robert Watts <[email protected]>
161161
* @author Vin Chawla <[email protected]>
162-
* @version 1.3.2
162+
* @version 1.5
163163
*/
164164
public class MemCachedClient {
165165

src/com/danga/MemCached/NativeHandler.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* MemCached Java client
3-
* Copyright (c) 2005
3+
* Copyright (c) 2007
44
*
55
* This library is free software; you can redistribute it and/or
66
* modify it under the terms of the GNU Lesser General Public
@@ -20,7 +20,7 @@
2020
*
2121
* @author Kevin A. Burton <[email protected]>
2222
* @author Greg Whalin <[email protected]>
23-
* @version 1.3.2
23+
* @version 1.5
2424
*/
2525
package com.danga.MemCached;
2626

src/com/danga/MemCached/NestedIOException.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* MemCached Java client
3-
* Copyright (c) 2005
3+
* Copyright (c) 2007
44
*
55
* This library is free software; you can redistribute it and/or
66
* modify it under the terms of the GNU Lesser General Public
@@ -19,7 +19,7 @@
1919
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
2020
*
2121
* @author Kevin A. Burton <[email protected]>
22-
* @version 1.3.2
22+
* @version 1.5
2323
*/
2424
package com.danga.MemCached;
2525

src/com/danga/MemCached/SockIOPool.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
22
* MemCached Java client, connection pool for Socket IO
3-
* Copyright (c) 2005
3+
* Copyright (c) 2007
44
*
5-
* This module is Copyright (c) 2005 Greg Whalin, Richard Russo
5+
* This module is Copyright (c) 2007 Greg Whalin, Richard Russo
66
* All rights reserved.
77
*
88
* This library is free software; you can redistribute it and/or
@@ -24,7 +24,7 @@
2424
* @author greg whalin <[email protected]>
2525
* @author Richard 'toast' Russo <[email protected]>
2626
*
27-
* @version 1.3.2
27+
* @version 1.5
2828
*/
2929
package com.danga.MemCached;
3030

@@ -115,7 +115,7 @@
115115
* </pre>
116116
*
117117
* @author greg whalin <[email protected]>
118-
* @version 1.3.2
118+
* @version 1.5
119119
*/
120120
public class SockIOPool {
121121

@@ -1265,7 +1265,7 @@ else if ( sockets.size() > maxConn ) {
12651265
* Class which extends thread and handles maintenance of the pool.
12661266
*
12671267
* @author greg whalin <[email protected]>
1268-
* @version 1.3.2
1268+
* @version 1.5
12691269
*/
12701270
protected static class MaintThread extends Thread {
12711271

@@ -1326,7 +1326,7 @@ public void run() {
13261326
*
13271327
* @author greg whalin <[email protected]>
13281328
* @author Richard 'toast' Russo <[email protected]>
1329-
* @version 1.2
1329+
* @version 1.5
13301330
*/
13311331
public static class SockIO {
13321332

0 commit comments

Comments
 (0)