File tree Expand file tree Collapse file tree 4 files changed +5
-6
lines changed
core/src/main/java/cn/leancloud Expand file tree Collapse file tree 4 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ allprojects {
3030}
3131
3232ext {
33- sdkVersion = " 6.4.5 "
33+ sdkVersion = " 6.4.6 "
3434 supportLibVersion = " 26.1.0"
3535 fastjsonVersion = " 1.1.71.android"
3636 converterVersion = " 2.1.0"
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ org.gradle.jvmargs=-Xmx1536m
1515# This option should only be used with decoupled projects. More details, visit
1616# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
1717# org.gradle.parallel=true
18- VERSION_NAME =6.4.5
18+ VERSION_NAME =6.4.6
1919VERSION_CODE =2695
2020GROUP =cn.leancloud
2121
Original file line number Diff line number Diff line change 2626import io .reactivex .Observable ;
2727import io .reactivex .ObservableSource ;
2828import io .reactivex .Observer ;
29- import io .reactivex .Scheduler ;
3029import io .reactivex .disposables .Disposable ;
3130import io .reactivex .functions .Function ;
3231import io .reactivex .schedulers .Schedulers ;
@@ -771,7 +770,7 @@ protected List<AVObject> extractCascadingObjects(Object o) {
771770 return result ;
772771 }
773772
774- protected Observable <List <AVObject >> getCascadingSaveObjects () {
773+ protected Observable <List <AVObject >> generateCascadingSaveObjects () {
775774 List <AVObject > result = new ArrayList <>();
776775 for (ObjectFieldOperation ofo : operations .values ()) {
777776 List <AVObject > operationValues = extractCascadingObjects (ofo .getValue ());
@@ -931,7 +930,7 @@ public Observable<? extends AVObject> saveInBackground(final AVSaveOption option
931930 return Observable .error (new AVException (AVException .CIRCLE_REFERENCE , "Found a circular dependency when saving." ));
932931 }
933932
934- Observable <List <AVObject >> needSaveFirstly = getCascadingSaveObjects ();
933+ Observable <List <AVObject >> needSaveFirstly = generateCascadingSaveObjects ();
935934 return needSaveFirstly .flatMap (new Function <List <AVObject >, Observable <? extends AVObject >>() {
936935 @ Override
937936 public Observable <? extends AVObject > apply (List <AVObject > objects ) throws Exception {
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ public interface SchedulerCreator{
3737
3838 private static boolean enableLocalCache = true ;
3939
40- private static final String SDK_VERSION = "6.4.5 " ;
40+ private static final String SDK_VERSION = "6.4.6 " ;
4141 private static final String DEFAULT_USER_AGENT = "LeanCloud-Java-SDK/" + SDK_VERSION ;
4242
4343 public static void setNetworkTimeout (int seconds ) {
You can’t perform that action at this time.
0 commit comments