aboutsummaryrefslogtreecommitdiffstats
path: root/lint/libs/lint_checks/tests/src/com/android/tools/lint/checks/data/res/layout/unused_namespace.xml
diff options
context:
space:
mode:
Diffstat (limited to 'lint/libs/lint_checks/tests/src/com/android/tools/lint/checks/data/res/layout/unused_namespace.xml')
-rw-r--r--lint/libs/lint_checks/tests/src/com/android/tools/lint/checks/data/res/layout/unused_namespace.xml14
1 files changed, 0 insertions, 14 deletions
diff --git a/lint/libs/lint_checks/tests/src/com/android/tools/lint/checks/data/res/layout/unused_namespace.xml b/lint/libs/lint_checks/tests/src/com/android/tools/lint/checks/data/res/layout/unused_namespace.xml
deleted file mode 100644
index f633e4b..0000000
--- a/lint/libs/lint_checks/tests/src/com/android/tools/lint/checks/data/res/layout/unused_namespace.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<foo.bar.LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:unused1="http://schemas.android.com/apk/res/unused1"
- xmlns:unused2="http://schemas.android.com/apk/res/unused1"
- xmlns:unused3="http://foo.bar.com/foo"
- xmlns:notunused="http://schemas.android.com/apk/res/notunused"
- xmlns:tools="http://schemas.android.com/tools" >
-
- <foo.bar.Button
- notunused:foo="Foo"
- tools:ignore="HardcodedText" >
- </foo.bar.Button>
-
-</foo.bar.LinearLayout>