Removed unneeded lint test util file

This should have been removed in aosp/1172530 since it is no longer
needed or used.

Test: ./gradlew bOS
Change-Id: I0498097c8f66f966797841cf0c8d8735616564c7
diff --git a/work/workmanager-lint/src/test/java/androidx/work/lint/Lint.kt b/work/workmanager-lint/src/test/java/androidx/work/lint/Lint.kt
deleted file mode 100644
index 915c853..0000000
--- a/work/workmanager-lint/src/test/java/androidx/work/lint/Lint.kt
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- * Copyright 2019 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package androidx.work.lint
-
-import java.io.File
-import java.io.InputStream
-import java.util.Properties
-
-fun sdkDirectory(): Lazy<File> = lazy {
-    var stream: InputStream? = null
-    try {
-        stream = Stubs::class.java.classLoader.getResourceAsStream("sdk.prop")
-        val properties = Properties()
-        properties.load(stream)
-        File(properties["sdk.dir"] as String)
-    } finally {
-        stream?.close()
-    }
-}