Skip to content

Commit

Permalink
Merge pull request #119 from flipkart-incubator/fix/methodAccess
Browse files Browse the repository at this point in the history
Updated package protected to public
  • Loading branch information
thekirankumar authored Dec 28, 2016
2 parents 63e9963 + 7c9f67b commit 34b3e54
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion batching-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ android {
minSdkVersion 14
targetSdkVersion 25
versionCode 1
versionName "1.2.3"
versionName "1.2.4"

testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

Expand Down
2 changes: 1 addition & 1 deletion batching-gson/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ android {
minSdkVersion 14
targetSdkVersion 25
versionCode 1
versionName "1.2.3"
versionName "1.2.4"

testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

Expand Down
2 changes: 1 addition & 1 deletion batching/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ android {
minSdkVersion 14
targetSdkVersion 25
versionCode 1
versionName "1.2.3"
versionName "1.2.4"
}

buildTypes {
Expand Down
10 changes: 5 additions & 5 deletions batching/src/main/java/com/flipkart/batching/BatchManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ public void run() {
* @param handler instance of {@link Handler}
*/

void initialize(BatchController<E, T> batchController, Context context,
public void initialize(BatchController<E, T> batchController, Context context,
OnBatchReadyListener<E, T> onBatchReadyListener, Handler handler) {
batchingStrategy.onInitialized(context, onBatchReadyListener, handler);
}
Expand Down Expand Up @@ -212,11 +212,11 @@ public Builder setOnBatchReadyListener(OnBatchReadyListener onBatchReadyListener
return this;
}

BatchingStrategy getBatchingStrategy() {
public BatchingStrategy getBatchingStrategy() {
return batchingStrategy;
}

Builder setBatchingStrategy(BatchingStrategy batchingStrategy) {
public Builder setBatchingStrategy(BatchingStrategy batchingStrategy) {
if (batchingStrategy != null) {
this.batchingStrategy = batchingStrategy;
} else {
Expand All @@ -234,12 +234,12 @@ public Builder setHandler(Handler handler) {
return this;
}

Builder registerDataType(Class<E> subClass) {
public Builder registerDataType(Class<E> subClass) {
dataTypes.add(subClass);
return this;
}

Builder registerBatchInfoType(Class<T> subClass) {
public Builder registerBatchInfoType(Class<T> subClass) {
batchInfoTypes.add(subClass);
return this;
}
Expand Down

0 comments on commit 34b3e54

Please sign in to comment.