[125960] web.xml mappings to taglib jars are not being resolved
diff --git a/bundles/org.eclipse.jst.jsp.core/src/org/eclipse/jst/jsp/core/taglib/ProjectDescription.java b/bundles/org.eclipse.jst.jsp.core/src/org/eclipse/jst/jsp/core/taglib/ProjectDescription.java
index 4a9efe8..859a214 100644
--- a/bundles/org.eclipse.jst.jsp.core/src/org/eclipse/jst/jsp/core/taglib/ProjectDescription.java
+++ b/bundles/org.eclipse.jst.jsp.core/src/org/eclipse/jst/jsp/core/taglib/ProjectDescription.java
@@ -1116,11 +1116,11 @@
 					if (resource.getFileExtension().equalsIgnoreCase(("jar"))) {
 						JarRecord jarRecord = (JarRecord) createJARRecord(resource);
 						String[] entries = JarUtilities.getEntryNames(resource);
-						for (int j = 0; j < entries.length; j++) {
-							if (entries[j].endsWith(".tld")) { //$NON-NLS-1$
-								if (entries[j].equals(JarUtilities.JSP11_TAGLIB)) {
+						for (int jEntry = 0; jEntry < entries.length; jEntry++) {
+							if (entries[jEntry].endsWith(".tld")) { //$NON-NLS-1$
+								if (entries[jEntry].equals(JarUtilities.JSP11_TAGLIB)) {
 									jarRecord.has11TLD = true;
-									InputStream contents = JarUtilities.getInputStream(resource, entries[i]);
+									InputStream contents = JarUtilities.getInputStream(resource, entries[jEntry]);
 									if (contents != null) {
 										TaglibInfo info = extractInfo(resource.getLocation().toString(), contents);
 										jarRecord.info = info;