Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesper Steen Møller2013-04-22 23:04:47 +0000
committerJesper Steen Møller2013-04-22 23:04:47 +0000
commita135b00295a3fbaec4aab5c6761e144221fba6e9 (patch)
tree8710dca6233be080029d866aba5602fee16fed6b
parentdcb1e8b32bcc245149f588d5f6ddc92354763bbb (diff)
downloadwebtools.sourceediting.xsl-a135b00295a3fbaec4aab5c6761e144221fba6e9.tar.gz
webtools.sourceediting.xsl-a135b00295a3fbaec4aab5c6761e144221fba6e9.tar.xz
webtools.sourceediting.xsl-a135b00295a3fbaec4aab5c6761e144221fba6e9.zip
[406262] [xsl][validation] StackOverflow when checking for circular
includes on next level import (copyright fix)
-rw-r--r--bundles/org.eclipse.wst.xsl.core/src/org/eclipse/wst/xsl/core/model/StylesheetModel.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.wst.xsl.core/src/org/eclipse/wst/xsl/core/model/StylesheetModel.java b/bundles/org.eclipse.wst.xsl.core/src/org/eclipse/wst/xsl/core/model/StylesheetModel.java
index 098ad9d..9fbe2ea 100644
--- a/bundles/org.eclipse.wst.xsl.core/src/org/eclipse/wst/xsl/core/model/StylesheetModel.java
+++ b/bundles/org.eclipse.wst.xsl.core/src/org/eclipse/wst/xsl/core/model/StylesheetModel.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2007, 2009 Chase Technology Ltd - http://www.chasetechnology.co.uk
+ * Copyright (c) 2007, 2013 Chase Technology Ltd - http://www.chasetechnology.co.uk
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -9,6 +9,7 @@
* Doug Satchwell (Chase Technology Ltd) - initial API and implementation
* David Carver (STAR) - bug 243577 - Added retrieving all called-templates.
* David Carver (STAR) - bug 246503 - Handled nested circular includes.
+ * Jesper S Moller - bug 406262 - StackOverflow when checking for circular includes on next level import
*******************************************************************************/
package org.eclipse.wst.xsl.core.model;
@@ -16,7 +17,6 @@ import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
-import java.util.Stack;
import org.eclipse.core.resources.IFile;
import org.eclipse.wst.xsl.core.XSLCore;

Back to the top