diff options
author | Xavier Ducrohet <xav@android.com> | 2010-01-26 16:38:37 -0800 |
---|---|---|
committer | Xavier Ducrohet <xav@android.com> | 2010-01-26 16:38:37 -0800 |
commit | 1f78628aea2386dc02c4522f06702e4168b1a966 (patch) | |
tree | 18295f2354ff25db30d5d2b94c9502f567a6783c /eclipse/plugins/com.android.ide.eclipse.tests | |
parent | aae21fc056ff15325c5ff5158648b7c6be7728de (diff) | |
download | sdk-1f78628aea2386dc02c4522f06702e4168b1a966.zip sdk-1f78628aea2386dc02c4522f06702e4168b1a966.tar.gz sdk-1f78628aea2386dc02c4522f06702e4168b1a966.tar.bz2 |
Fix ADT Build. ExplodedRenderingHelperTest was not updated to the new API of ExplodedRenderingHelper
Change-Id: I987004d3869f9e2f94efb0bec1f92f55a8c42501
Diffstat (limited to 'eclipse/plugins/com.android.ide.eclipse.tests')
-rw-r--r-- | eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/ExplodeRenderingHelperTest.java | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/ExplodeRenderingHelperTest.java b/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/ExplodeRenderingHelperTest.java index 690bd22..516cb04 100644 --- a/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/ExplodeRenderingHelperTest.java +++ b/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/ExplodeRenderingHelperTest.java @@ -21,14 +21,13 @@ import com.android.sdklib.SdkConstants; import org.w3c.dom.Node; -import java.util.ArrayList; -import java.util.List; +import java.util.HashSet; import junit.framework.TestCase; public class ExplodeRenderingHelperTest extends TestCase { - private final List<String> mLayoutNames = new ArrayList<String>(); + private final HashSet<String> mLayoutNames = new HashSet<String>(); @Override protected void setUp() throws Exception { |