[114357] Method adjustTextLength in GenericTemplateRegion implemented hard coded
diff --git a/bundles/org.eclipse.wst.xml.core/src/org/eclipse/wst/xml/core/internal/parser/regions/GenericTemplateRegion.java b/bundles/org.eclipse.wst.xml.core/src/org/eclipse/wst/xml/core/internal/parser/regions/GenericTemplateRegion.java
index 407898d..624f98b 100644
--- a/bundles/org.eclipse.wst.xml.core/src/org/eclipse/wst/xml/core/internal/parser/regions/GenericTemplateRegion.java
+++ b/bundles/org.eclipse.wst.xml.core/src/org/eclipse/wst/xml/core/internal/parser/regions/GenericTemplateRegion.java
@@ -22,6 +22,7 @@
  * 
  * This class is not intended to be used, its just present to server as a
  * generic starting point for adding new specific region types.
+ * 
  */
 
 public class GenericTemplateRegion implements ITextRegion {
@@ -55,7 +56,7 @@
 
 
 	public void adjustTextLength(int i) {
-		fTextLength += 1;
+		fTextLength += i;
 
 	}