Bug 1460894 - Fix typo and copy constructor in GeckoRuntimeSettings r=jchen

MozReview-Commit-ID: 5ojPLTh1Z0I
This commit is contained in:
James Willcox 2018-05-11 10:20:57 -05:00
Родитель 8608aa5bfa
Коммит 4ea8668f02
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -231,6 +231,7 @@ public final class GeckoRuntimeSettings implements Parcelable {
mNativeCrashReporting = settings.mNativeCrashReporting;
mJavaCrashReporting = settings.mJavaCrashReporting;
mDebugPause = settings.mDebugPause;
}
/* package */ void flush() {
@ -386,7 +387,7 @@ public final class GeckoRuntimeSettings implements Parcelable {
mNativeCrashReporting = ParcelableUtils.readBoolean(source);
mJavaCrashReporting = ParcelableUtils.readBoolean(source);
mJavaCrashReporting = ParcelableUtils.readBoolean(source);
mDebugPause = ParcelableUtils.readBoolean(source);
}
public static final Parcelable.Creator<GeckoRuntimeSettings> CREATOR