Skip to content

Commit 9f0dfea

Browse files
committed
rename package and class name to more sane values
1 parent 6c7e586 commit 9f0dfea

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

src/com/whalin/memcached/ErrorHandler.java

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* library.
1616
*
1717
* This is an interface implemented by classes that want to receive callbacks
18-
* in the event of an error in {@link MemCachedClient}. The implementor can do
18+
* in the event of an error in {@link MemcachedClient}. The implementor can do
1919
* things like flush caches or perform additioonal logging.
2020
*
2121
* @author Dan Zivkovic <[email protected]>
@@ -28,47 +28,47 @@ public interface ErrorHandler {
2828
/**
2929
* Called for errors thrown during initialization.
3030
*/
31-
public void handleErrorOnInit( final MemCachedClient client ,
31+
public void handleErrorOnInit( final MemcachedClient client ,
3232
final Throwable error );
3333

3434
/**
35-
* Called for errors thrown during {@link MemCachedClient#get(String)} and related methods.
35+
* Called for errors thrown during {@link MemcachedClient#get(String)} and related methods.
3636
*/
37-
public void handleErrorOnGet( final MemCachedClient client ,
37+
public void handleErrorOnGet( final MemcachedClient client ,
3838
final Throwable error ,
3939
final String cacheKey );
4040

4141
/**
42-
* Called for errors thrown during {@link MemCachedClient#getMulti(String)} and related methods.
42+
* Called for errors thrown during {@link MemcachedClient#getMulti(String)} and related methods.
4343
*/
44-
public void handleErrorOnGet( final MemCachedClient client ,
44+
public void handleErrorOnGet( final MemcachedClient client ,
4545
final Throwable error ,
4646
final String[] cacheKeys );
4747

4848
/**
49-
* Called for errors thrown during {@link MemCachedClient#set(String,Object)} and related methods.
49+
* Called for errors thrown during {@link MemcachedClient#set(String,Object)} and related methods.
5050
*/
51-
public void handleErrorOnSet( final MemCachedClient client ,
51+
public void handleErrorOnSet( final MemcachedClient client ,
5252
final Throwable error ,
5353
final String cacheKey );
5454

5555
/**
56-
* Called for errors thrown during {@link MemCachedClient#delete(String)} and related methods.
56+
* Called for errors thrown during {@link MemcachedClient#delete(String)} and related methods.
5757
*/
58-
public void handleErrorOnDelete( final MemCachedClient client ,
58+
public void handleErrorOnDelete( final MemcachedClient client ,
5959
final Throwable error ,
6060
final String cacheKey );
6161

6262
/**
63-
* Called for errors thrown during {@link MemCachedClient#flushAll()} and related methods.
63+
* Called for errors thrown during {@link MemcachedClient#flushAll()} and related methods.
6464
*/
65-
public void handleErrorOnFlush( final MemCachedClient client ,
65+
public void handleErrorOnFlush( final MemcachedClient client ,
6666
final Throwable error );
6767

6868
/**
69-
* Called for errors thrown during {@link MemCachedClient#stats()} and related methods.
69+
* Called for errors thrown during {@link MemcachedClient#stats()} and related methods.
7070
*/
71-
public void handleErrorOnStats( final MemCachedClient client ,
71+
public void handleErrorOnStats( final MemcachedClient client ,
7272
final Throwable error );
7373

7474
} // interface

src/com/whalin/memcached/MemcachedClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ public class MemcachedClient {
160160

161161
// logger
162162
private static Logger log =
163-
Logger.getLogger( MemCachedClient.class.getName() );
163+
Logger.getLogger( MemcachedClient.class.getName() );
164164

165165
// return codes
166166
private static final String VALUE = "VALUE"; // start of value line from server

0 commit comments

Comments
 (0)