Skip to content

Commit e617edf

Browse files
committed
tweak: update version info
1 parent 24374b1 commit e617edf

File tree

6 files changed

+13
-11
lines changed

6 files changed

+13
-11
lines changed

src/com/danga/MemCached/ContextObjectInputStream.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
* class loader.
2626
*
2727
* @author Vin Chawla <[email protected]>
28+
* @version 1.3.1
2829
*/
2930
package com.danga.MemCached;
3031

src/com/danga/MemCached/Logger.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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.2
25+
* @version 1.3.1
2626
*/
2727
package com.danga.MemCached;
2828

src/com/danga/MemCached/MemCachedClient.java

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@
2424
* @author Greg Whalin <[email protected]>
2525
* @author Richard 'toast' Russo <[email protected]>
2626
* @author Kevin Burton <[email protected]>
27-
* @version 1.2
27+
* @author Robert Watts <[email protected]>
28+
* @author Vin Chawla <[email protected]>
29+
* @version 1.3.1
2830
*/
2931
package com.danga.MemCached;
3032

@@ -155,7 +157,9 @@
155157
* @author greg whalin <[email protected]>
156158
* @author Richard 'toast' Russo <[email protected]>
157159
* @author Kevin Burton <[email protected]>
158-
* @version 1.2
160+
* @author Robert Watts <[email protected]>
161+
* @author Vin Chawla <[email protected]>
162+
* @version 1.3.1
159163
*/
160164
public class MemCachedClient {
161165

src/com/danga/MemCached/NativeHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
*
2121
* @author Kevin A. Burton <[email protected]>
2222
* @author Greg Whalin <[email protected]>
23-
* @version 1.2
23+
* @version 1.3.1
2424
*/
2525
package com.danga.MemCached;
2626

src/com/danga/MemCached/NestedIOException.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -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.2
22+
* @version 1.3.1
2323
*/
2424
package com.danga.MemCached;
2525

@@ -39,11 +39,8 @@ public class NestedIOException extends IOException {
3939
* @param cause object of type throwable
4040
*/
4141
public NestedIOException( Throwable cause ) {
42-
4342
super( cause.getMessage() );
44-
4543
super.initCause( cause );
46-
4744
}
4845

4946
public NestedIOException( String message, Throwable cause ) {

src/com/danga/MemCached/SockIOPool.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* @author greg whalin <[email protected]>
2525
* @author Richard 'toast' Russo <[email protected]>
2626
*
27-
* @version 1.2
27+
* @version 1.3.1
2828
*/
2929
package com.danga.MemCached;
3030

@@ -113,7 +113,7 @@
113113
* </pre>
114114
*
115115
* @author greg whalin <[email protected]>
116-
* @version 1.2
116+
* @version 1.3.1
117117
*/
118118
public class SockIOPool {
119119

@@ -1102,7 +1102,7 @@ else if ( sockets.size() > maxConn ) {
11021102
* Class which extends thread and handles maintenance of the pool.
11031103
*
11041104
* @author greg whalin <[email protected]>
1105-
* @version 1.2
1105+
* @version 1.3.1
11061106
*/
11071107
protected static class MaintThread extends Thread {
11081108

0 commit comments

Comments
 (0)