Skip to content

Commit

Permalink
java.lang.IllegalArgumentException: Index out of bounds #213
Browse files Browse the repository at this point in the history
Signed-off-by: Lakshminarayana Nekkanti <narayana.nekkanti@gmail.com>
  • Loading branch information
lak-proddev authored and mickaelistria committed Jul 15, 2019
1 parent dbd69e1 commit cbf85df
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion org.eclipse.tm4e.ui/META-INF/MANIFEST.MF
Expand Up @@ -4,7 +4,7 @@ Bundle-Name: %pluginName
Bundle-Vendor: %providerName
Bundle-Localization: plugin
Bundle-SymbolicName: org.eclipse.tm4e.ui;singleton:=true
Bundle-Version: 0.3.3.qualifier
Bundle-Version: 0.3.4.qualifier
Require-Bundle: org.eclipse.tm4e.core,
org.eclipse.jface.text,
org.eclipse.core.runtime,
Expand Down
2 changes: 1 addition & 1 deletion org.eclipse.tm4e.ui/pom.xml
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<artifactId>org.eclipse.tm4e.ui</artifactId>
<packaging>eclipse-plugin</packaging>
<version>0.3.3-SNAPSHOT</version>
<version>0.3.4-SNAPSHOT</version>
<parent>
<groupId>org.eclipse</groupId>
<artifactId>org.eclipse.tm4e</artifactId>
Expand Down
Expand Up @@ -294,7 +294,7 @@ public void textChanged(TextEvent e) {
if (range == null) {
return;
}
range.length += diff;
range.length = Math.max(0, range.length + diff);
viewer.getTextWidget().setStyleRange(range);
return;
}
Expand Down
2 changes: 1 addition & 1 deletion tm-feature/feature.xml
Expand Up @@ -2,7 +2,7 @@
<feature
id="tm-feature"
label="%featureName"
version="0.3.3.qualifier"
version="0.3.4.qualifier"
provider-name="%featureProvider"
license-feature="org.eclipse.license"
license-feature-version="0.0.0">
Expand Down
4 changes: 2 additions & 2 deletions tm-feature/pom.xml
Expand Up @@ -7,5 +7,5 @@
</parent>
<artifactId>tm-feature</artifactId>
<packaging>eclipse-feature</packaging>
<version>0.3.3-SNAPSHOT</version>
</project>
<version>0.3.4-SNAPSHOT</version>
</project>

0 comments on commit cbf85df

Please sign in to comment.