Skip to content

Commit

Permalink
Merge pull request #118 from flipkart-incubator/fix/privateAccess
Browse files Browse the repository at this point in the history
Updated BatchManager builder to be public from package protected
  • Loading branch information
thekirankumar authored Dec 28, 2016
2 parents f8ecf49 + 8827a0f commit 63e9963
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 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.2"
versionName "1.2.3"

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.2"
versionName "1.2.3"

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.2"
versionName "1.2.3"
}

buildTypes {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ void initialize(BatchController<E, T> batchController, Context context,
batchingStrategy.onInitialized(context, onBatchReadyListener, handler);
}

static class Builder<E extends Data, T extends Batch<E>> {
public static class Builder<E extends Data, T extends Batch<E>> {
Set<Class<E>> dataTypes = new HashSet<>();
Set<Class<T>> batchInfoTypes = new HashSet<>();
private Handler handler;
Expand Down

0 comments on commit 63e9963

Please sign in to comment.