Skip to content

Commit

Permalink
SVY-18272 Wicket error svyWebClientUtils.js
Browse files Browse the repository at this point in the history
ConsString doesnt handle wel when one of the right/lefts charsequences
are not really Strings but another type of charsequence.
  • Loading branch information
jcompagner committed Aug 9, 2023
1 parent 1015220 commit a7d4e3b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Servoy JavaScript Plug-in
Bundle-SymbolicName: org.eclipse.dltk.javascript.rhino
Bundle-Version: 1.7.14.s5
Bundle-Version: 1.7.14.s6
Bundle-Vendor: Servoy
Export-Package: org.eclipse.dltk.rhino.dbgp,
org.mozilla.classfile,
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<artifactId>org.eclipse.dltk.javascript.rhino</artifactId>
<groupId>com.servoy</groupId>
<packaging>eclipse-plugin</packaging>
<version>1.7.14.s5</version>
<version>1.7.14.s6</version>
<prerequisites>
<maven>3.8.6</maven>
</prerequisites>
Expand Down
2 changes: 1 addition & 1 deletion src/org/mozilla/javascript/ConsString.java
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ private synchronized String flatten() {
}
}

final String str = (String) next;
final String str = next.toString();
charPos -= str.length();
str.getChars(0, str.length(), chars, charPos);
next = stack.isEmpty() ? null : stack.removeFirst();
Expand Down

0 comments on commit a7d4e3b

Please sign in to comment.