summaryrefslogtreecommitdiffstats
path: root/luni/src/test
diff options
context:
space:
mode:
authorJesse Wilson <jessewilson@google.com>2011-01-09 13:24:47 -0800
committerAndroid (Google) Code Review <android-gerrit@google.com>2011-01-09 13:24:47 -0800
commit38e90abbe4ec0a889cb16dc673cf892274c18a01 (patch)
tree5271150b3224c55be498c02797bfea4c0ea464b9 /luni/src/test
parent139545096c077c172af9e8dd7122b56172715ce9 (diff)
parent1c45ea38a7df88c22df805d048654d77d49a333d (diff)
downloadlibcore-38e90abbe4ec0a889cb16dc673cf892274c18a01.zip
libcore-38e90abbe4ec0a889cb16dc673cf892274c18a01.tar.gz
libcore-38e90abbe4ec0a889cb16dc673cf892274c18a01.tar.bz2
Merge "Remove the ExpatPullParser." into dalvik-dev
Diffstat (limited to 'luni/src/test')
-rw-r--r--luni/src/test/java/libcore/xml/ExpatPullParserDtdTest.java26
-rw-r--r--luni/src/test/java/libcore/xml/ExpatPullParserTest.java27
2 files changed, 0 insertions, 53 deletions
diff --git a/luni/src/test/java/libcore/xml/ExpatPullParserDtdTest.java b/luni/src/test/java/libcore/xml/ExpatPullParserDtdTest.java
deleted file mode 100644
index 5e62310..0000000
--- a/luni/src/test/java/libcore/xml/ExpatPullParserDtdTest.java
+++ /dev/null
@@ -1,26 +0,0 @@
-/*
- * Copyright (C) 2010 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 libcore.xml;
-
-import org.apache.harmony.xml.ExpatPullParser;
-import org.xmlpull.v1.XmlPullParser;
-
-public class ExpatPullParserDtdTest extends PullParserDtdTest {
- @Override XmlPullParser newPullParser() {
- return new ExpatPullParser();
- }
-}
diff --git a/luni/src/test/java/libcore/xml/ExpatPullParserTest.java b/luni/src/test/java/libcore/xml/ExpatPullParserTest.java
deleted file mode 100644
index 5d1725d..0000000
--- a/luni/src/test/java/libcore/xml/ExpatPullParserTest.java
+++ /dev/null
@@ -1,27 +0,0 @@
-/*
- * Copyright (C) 2010 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 libcore.xml;
-
-import org.apache.harmony.xml.ExpatPullParser;
-import org.xmlpull.v1.XmlPullParser;
-
-public final class ExpatPullParserTest extends PullParserTest {
-
- @Override XmlPullParser newPullParser() {
- return new ExpatPullParser();
- }
-}