Skip to content

Commit

Permalink
revert
Browse files Browse the repository at this point in the history
  • Loading branch information
zspitzer committed Nov 12, 2024
1 parent 3b3aa7a commit 76bf5f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/lucee/transformer/util/SourceCode.java
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public SourceCode(SourceCode parent, String strText, boolean writeLog) {
this.hash = strText.hashCode();
lcText = new char[text.length];

ArrayList<Integer> arr = new ArrayList<Integer>((int)strText.lines().count());
ArrayList<Integer> arr = new ArrayList<Integer>();

for (int i = 0; i < text.length; i++) {
pos = i;
Expand Down

0 comments on commit 76bf5f9

Please sign in to comment.