diff --git a/android/lint.xml b/android/lint.xml
index 8ad971986..5d43d7ff6 100644
--- a/android/lint.xml
+++ b/android/lint.xml
@@ -28,10 +28,4 @@
-
-
-
-
-
-
diff --git a/common/src/jni/main/cpp/conscrypt/native_crypto.cc b/common/src/jni/main/cpp/conscrypt/native_crypto.cc
index 54dfbcdab..ab1f1512a 100644
--- a/common/src/jni/main/cpp/conscrypt/native_crypto.cc
+++ b/common/src/jni/main/cpp/conscrypt/native_crypto.cc
@@ -7835,12 +7835,7 @@ static int sslSelect(JNIEnv* env, int type, jobject fdObject, AppData* appData,
if (fds[1].revents & POLLIN) {
char token;
do {
- // TEMP - fixes build error
- int foo = 0;
- foo = read(appData->fdsEmergency[0], &token, 1);
- if (foo > 0) {
- CONSCRYPT_LOG_VERBOSE("FOO: %d", foo);
- }
+ (void)read(appData->fdsEmergency[0], &token, 1);
} while (errno == EINTR);
}
}
@@ -7871,12 +7866,7 @@ static void sslNotify(AppData* appData) {
char token = '*';
do {
errno = 0;
- // TEMP - fixes build error
- int foo = 0;
- foo = write(appData->fdsEmergency[1], &token, 1);
- if (foo > 0) {
- CONSCRYPT_LOG_VERBOSE("FOO: %d", foo);
- }
+ (void)write(appData->fdsEmergency[1], &token, 1);
} while (errno == EINTR);
errno = errnoBackup;
#endif
diff --git a/openjdk/build.gradle b/openjdk/build.gradle
index 4092c6e70..b63b4c8de 100644
--- a/openjdk/build.gradle
+++ b/openjdk/build.gradle
@@ -350,15 +350,6 @@ def testInterop = tasks.register("testInterop", Test) {
}
check.dependsOn testInterop
-// Added to see results of new ECH tests when running tests from the command line
-tasks.withType(Test).configureEach {
- testLogging {
- exceptionFormat "full"
- events "started", "skipped", "passed", "failed"
- showStandardStreams true
- }
-}
-
jacocoTestReport {
additionalSourceDirs.from files("$rootDir/openjdk/src/test/java", "$rootDir/common/src/main/java")
executionData tasks.withType(Test)