Skip to content

Commit 841a301

Browse files
committed
OSCache?!? it must be a refuse
1 parent dfa4983 commit 841a301

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

src/main/java/org/mybatis/caches/memcached/AbstractPropertySetter.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
import java.util.Properties;
2626

2727
/**
28-
* Converts a keyed property string in the OSCache Config to a proper Java
28+
* Converts a keyed property string in the Config to a proper Java
2929
* object representation.
3030
*
3131
* @version $Id$
@@ -51,7 +51,7 @@ abstract class AbstractPropertySetter<T> {
5151
}
5252

5353
/**
54-
* The OSCache Config property key.
54+
* The Config property key.
5555
*/
5656
private final String propertyKey;
5757

@@ -67,14 +67,14 @@ abstract class AbstractPropertySetter<T> {
6767

6868
/**
6969
* The default value used if something goes wrong during the conversion or
70-
* the property is not set in the OSCache config.
70+
* the property is not set in the config.
7171
*/
7272
private final T defaultValue;
7373

7474
/**
7575
* Build a new property setter.
7676
*
77-
* @param propertyKey the OSCache Config property key.
77+
* @param propertyKey the Config property key.
7878
* @param propertyName the {@link MemcachedConfiguration} property name.
7979
* @param defaultValue the property default value.
8080
*/
@@ -95,10 +95,10 @@ public AbstractPropertySetter(final String propertyKey, final String propertyNam
9595
}
9696

9797
/**
98-
* Extract a property from the OSCache, converts and puts it to the
98+
* Extract a property from the, converts and puts it to the
9999
* {@link MemcachedConfiguration}.
100100
*
101-
* @param config the OSCache Config
101+
* @param config the Config
102102
* @param memcachedConfiguration the {@link MemcachedConfiguration}
103103
*/
104104
public final void set(Properties config, MemcachedConfiguration memcachedConfiguration) {

src/main/java/org/mybatis/caches/memcached/IntegerPropertySetter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ final class IntegerPropertySetter extends AbstractPropertySetter<Integer> {
2525
/**
2626
* Instantiates a String to Integer setter.
2727
*
28-
* @param propertyKey the OSCache Config property key.
28+
* @param propertyKey the Config property key.
2929
* @param propertyName the {@link MemcachedConfiguration} property name.
3030
* @param defaultValue the property default value.
3131
*/

0 commit comments

Comments
 (0)