tests: remove DisabledForUpdateToAnyMatcher

This annotation class is no longer needed. Nuke it.

Bug: 36658432
Test: runtests.sh
Test: runtests.sh -e class com.android.server.wifi.WifiDiagnosticsTest
Change-Id: I78378b9bd01f9fae145e66ea293affb0f2344123
diff --git a/tests/wifitests/runtests.sh b/tests/wifitests/runtests.sh
index 7a34bf7..d5b631c 100755
--- a/tests/wifitests/runtests.sh
+++ b/tests/wifitests/runtests.sh
@@ -41,5 +41,4 @@
 adb install -r -g "$OUT/data/app/FrameworksWifiTests/FrameworksWifiTests.apk"
 
 adb shell am instrument -w "$@" \
-  -e notAnnotation com.android.server.wifi.DisabledForUpdateToAnyMatcher \
   'com.android.server.wifi.test/com.android.server.wifi.CustomTestRunner'
diff --git a/tests/wifitests/src/com/android/server/wifi/DisabledForUpdateToAnyMatcher.java b/tests/wifitests/src/com/android/server/wifi/DisabledForUpdateToAnyMatcher.java
deleted file mode 100644
index 6f1df47..0000000
--- a/tests/wifitests/src/com/android/server/wifi/DisabledForUpdateToAnyMatcher.java
+++ /dev/null
@@ -1,24 +0,0 @@
-/*
- * Copyright (C) 2017 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 com.android.server.wifi;
-
-import java.lang.annotation.Retention;
-import java.lang.annotation.RetentionPolicy;
-
-@Retention(RetentionPolicy.RUNTIME)
-public @interface DisabledForUpdateToAnyMatcher {
-}