separating jsp
authorAlexey Kudravtsev <cdr@intellij.com>
Wed, 11 Aug 2010 09:12:41 +0000 (13:12 +0400)
committerAlexey Kudravtsev <cdr@intellij.com>
Wed, 11 Aug 2010 09:22:22 +0000 (13:22 +0400)
java/java-tests/testData/psi/optimizeImports/EmptyImportInJsp.jsp [deleted file]
java/java-tests/testData/psi/optimizeImports/EmptyImportInJsp_after.jsp [deleted file]
java/java-tests/testData/psi/optimizeImports/UsageInCustomTag.jsp [deleted file]
java/java-tests/testData/psi/optimizeImports/UsageInCustomTag_after.jsp [deleted file]
java/java-tests/testSrc/com/intellij/psi/OptimizeImportsTest.java

diff --git a/java/java-tests/testData/psi/optimizeImports/EmptyImportInJsp.jsp b/java/java-tests/testData/psi/optimizeImports/EmptyImportInJsp.jsp
deleted file mode 100644 (file)
index 9062b95..0000000
+++ /dev/null
@@ -1 +0,0 @@
-<%@ page autoFlush="true" import="java.util.List" %>
diff --git a/java/java-tests/testData/psi/optimizeImports/EmptyImportInJsp_after.jsp b/java/java-tests/testData/psi/optimizeImports/EmptyImportInJsp_after.jsp
deleted file mode 100644 (file)
index 1edc871..0000000
+++ /dev/null
@@ -1 +0,0 @@
-<%@ page autoFlush="true" %>
diff --git a/java/java-tests/testData/psi/optimizeImports/UsageInCustomTag.jsp b/java/java-tests/testData/psi/optimizeImports/UsageInCustomTag.jsp
deleted file mode 100644 (file)
index 92dfb60..0000000
+++ /dev/null
@@ -1,4 +0,0 @@
-<html>
-<%@ page import="java.util.List" %>
-<jsp:useBean id="xxx" class="List"/>
-</html>
diff --git a/java/java-tests/testData/psi/optimizeImports/UsageInCustomTag_after.jsp b/java/java-tests/testData/psi/optimizeImports/UsageInCustomTag_after.jsp
deleted file mode 100644 (file)
index 92dfb60..0000000
+++ /dev/null
@@ -1,4 +0,0 @@
-<html>
-<%@ page import="java.util.List" %>
-<jsp:useBean id="xxx" class="List"/>
-</html>
index 7bfc6c089d444ed0917378c1ffbdde694de4b3e5..7da6db49e7b6775663b4c3adfd751f22043ff3a8 100644 (file)
@@ -1,3 +1,18 @@
+/*
+ * Copyright 2000-2010 JetBrains s.r.o.
+ *
+ * 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.intellij.psi;
 
 import com.intellij.openapi.application.ApplicationManager;
@@ -18,7 +33,6 @@ public class OptimizeImportsTest extends PsiTestCase{
 
   public void testSCR6138() throws Exception { doTest(); }
   public void testSCR18364() throws Exception { doTest(); }
-  public void testEmptyImportInJsp() throws Exception { doTest(".jsp"); }
   public void testStaticImports1() throws Exception { doTest(); }
   public void testStaticImportsToOptimize() throws Exception { doTest(); }
   public void testStaticImportsToOptimize2() throws Exception { doTest(); }