remove unused code
This commit is contained in:
parent
6b80645e06
commit
5b539fd906
|
@ -125,12 +125,6 @@ android {
|
||||||
jvmTarget = '1.8'
|
jvmTarget = '1.8'
|
||||||
}
|
}
|
||||||
lintOptions {
|
lintOptions {
|
||||||
// TODO remove once wear dependency com.google.android.gms:play-services-wearable:7.3.0
|
|
||||||
// has been upgraded (requiring significant code changes), which currently fails release
|
|
||||||
// build with a deprecation warning
|
|
||||||
// abortOnError false
|
|
||||||
// (disabled entirely to avoid reports on the error, which would still be displayed
|
|
||||||
// and it's easy to overlook that it's ignored)
|
|
||||||
checkReleaseBuilds false
|
checkReleaseBuilds false
|
||||||
disable 'MissingTranslation'
|
disable 'MissingTranslation'
|
||||||
disable 'ExtraTranslation'
|
disable 'ExtraTranslation'
|
||||||
|
@ -300,11 +294,6 @@ dependencies {
|
||||||
}
|
}
|
||||||
testImplementation "org.skyscreamer:jsonassert:1.5.0"
|
testImplementation "org.skyscreamer:jsonassert:1.5.0"
|
||||||
testImplementation "org.hamcrest:hamcrest-all:1.3"
|
testImplementation "org.hamcrest:hamcrest-all:1.3"
|
||||||
/*
|
|
||||||
testImplementation("uk.org.lidalia:slf4j-test:1.2.0") {
|
|
||||||
exclude group: "com.google.guava", module: "guava"
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
|
|
||||||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
||||||
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
||||||
|
|
|
@ -1,59 +0,0 @@
|
||||||
package android.util;
|
|
||||||
|
|
||||||
import java.time.LocalDateTime;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Created by andy on 3/10/19.
|
|
||||||
*/
|
|
||||||
|
|
||||||
public class Log {
|
|
||||||
|
|
||||||
// 03-10 13:44:42.847 12790-12888/info.nightscout.androidaps D/MedtronicHistoryData:
|
|
||||||
|
|
||||||
static boolean isLoggingEnabled = false;
|
|
||||||
|
|
||||||
|
|
||||||
public static void setLoggingEnabled(boolean enabled) {
|
|
||||||
isLoggingEnabled = enabled;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
private void writeLog(String type, String tag, String message) {
|
|
||||||
if (isLoggingEnabled) {
|
|
||||||
LocalDateTime ldt = LocalDateTime.now();
|
|
||||||
System.out.println("DEBUG: " + tag + ": " + message);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
public static int d(String tag, String msg) {
|
|
||||||
System.out.println("DEBUG: " + tag + ": " + msg);
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
public static int v(String tag, String msg) {
|
|
||||||
System.out.println("VERBOSE: " + tag + ": " + msg);
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
public static int i(String tag, String msg) {
|
|
||||||
System.out.println("INFO: " + tag + ": " + msg);
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
public static int w(String tag, String msg) {
|
|
||||||
System.out.println("WARN: " + tag + ": " + msg);
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
public static int e(String tag, String msg) {
|
|
||||||
System.out.println("ERROR: " + tag + ": " + msg);
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
// add other methods if required...
|
|
||||||
}
|
|
|
@ -37,7 +37,7 @@ open class TriggerTestBase : TestBaseWithProfile() {
|
||||||
|
|
||||||
@Before
|
@Before
|
||||||
fun prepareMock1() {
|
fun prepareMock1() {
|
||||||
receiverStatusStore = ReceiverStatusStore(context)
|
receiverStatusStore = ReceiverStatusStore(context, rxBus)
|
||||||
}
|
}
|
||||||
|
|
||||||
var injector: HasAndroidInjector = HasAndroidInjector {
|
var injector: HasAndroidInjector = HasAndroidInjector {
|
||||||
|
|
Loading…
Reference in a new issue