From 829533fa0e042c04ac43f3fd0a8fd20efecd697f Mon Sep 17 00:00:00 2001 From: Andy Wu Date: Wed, 26 Oct 2016 16:49:49 +0800 Subject: [PATCH] don't process include jsp files --- .../src/com/liferay/blade/eclipse/provider/JSPFileWTP.java | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/com.liferay.blade.eclipse.provider/src/com/liferay/blade/eclipse/provider/JSPFileWTP.java b/com.liferay.blade.eclipse.provider/src/com/liferay/blade/eclipse/provider/JSPFileWTP.java index 29f428e76..a6f6d51cd 100644 --- a/com.liferay.blade.eclipse.provider/src/com/liferay/blade/eclipse/provider/JSPFileWTP.java +++ b/com.liferay.blade.eclipse.provider/src/com/liferay/blade/eclipse/provider/JSPFileWTP.java @@ -263,11 +263,7 @@ public JSPTranslationPrime(IJavaProject javaProject, private class JSPTranslatorPrime extends JSPTranslator { @Override protected void handleIncludeFile(String filename) { - try { - super.handleIncludeFile(filename); - } catch (Exception e) { - // suppress errors in handling include files - } + //don't process include files to avoid redundant results and wrong line number } }