Skip to content

Commit

Permalink
Updated BatchManager builder to be public from package protected
Browse files Browse the repository at this point in the history
  • Loading branch information
kushalsharma committed Dec 28, 2016
1 parent f8ecf49 commit 8827a0f
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 8827a0f

Please sign in to comment.