Skip to content

Commit

Permalink
Rename kryo sys prop names *.buffersize.* to *.bufferSize.*
Browse files Browse the repository at this point in the history
To be a more consistent.

In detail, these are changed:

* msm.kryo.buffersize.initial -> msm.kryo.bufferSize.initial
* msm.kryo.buffersize.max -> msm.kryo.bufferSize.max
  • Loading branch information
Martin Grotzke committed Jan 19, 2014
1 parent f661be4 commit 87c19da
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ public class KryoTranscoderFactory implements TranscoderFactory {

private static final Log LOG = LogFactory.getLog( KryoTranscoderFactory.class );

public static final String PROP_INIT_BUFFER_SIZE = "msm.kryo.buffersize.initial";
public static final String PROP_ENV_MAX_BUFFER_SIZE = "msm.kryo.buffersize.max";
public static final String PROP_INIT_BUFFER_SIZE = "msm.kryo.bufferSize.initial";
public static final String PROP_ENV_MAX_BUFFER_SIZE = "msm.kryo.bufferSize.max";
public static final String PROP_ENV_DEFAULT_FACTORY = "msm.kryo.defaultSerializerFactory";

private boolean _copyCollectionsForSerialization;
Expand Down

0 comments on commit 87c19da

Please sign in to comment.