Skip to content

Commit efd2f44

Browse files
committed
Remove dependency on Traceur.
This library has not been updated in two years (may no longer be maintained?), and no longer works with the latest RxJava.
1 parent 71223f9 commit efd2f44

File tree

2 files changed

+0
-7
lines changed

2 files changed

+0
-7
lines changed

app/build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ dependencies {
7272
androidTestImplementation 'org.mockito:mockito-core:2.10.0'
7373

7474
// Debugging
75-
implementation 'com.tspoon.traceur:traceur:1.0.1'
7675
implementation 'com.facebook.stetho:stetho:1.5.0'
7776
debugImplementation "com.squareup.leakcanary:leakcanary-android:$LEAK_CANARY_VERSION"
7877
releaseImplementation "com.squareup.leakcanary:leakcanary-android-no-op:$LEAK_CANARY_VERSION"

app/src/main/java/fr/free/nrw/commons/CommonsApplication.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
import com.facebook.stetho.Stetho;
1717
import com.squareup.leakcanary.LeakCanary;
1818
import com.squareup.leakcanary.RefWatcher;
19-
import com.tspoon.traceur.Traceur;
2019

2120
import org.acra.ACRA;
2221
import org.acra.ReportingInteractionMode;
@@ -90,11 +89,6 @@ public class CommonsApplication extends Application {
9089
public void onCreate() {
9190
super.onCreate();
9291
ACRA.init(this);
93-
if (BuildConfig.DEBUG) {
94-
//FIXME: Traceur should be disabled for release builds until error fixed
95-
//See https://github.com/commons-app/apps-android-commons/issues/1877
96-
Traceur.enableLogging();
97-
}
9892

9993
ApplicationlessInjection
10094
.getInstance(this)

0 commit comments

Comments
 (0)