JS: Remove unneeded replace call

This commit is contained in:
Asger F
2019-06-29 07:23:38 +01:00
parent 74ad6e87c1
commit 9b4bdaecce

View File

@@ -1866,7 +1866,7 @@ public class JSDocParser {
Tag tag;
String description;
source = comment.replaceAll("^/?\\*+", "").replaceAll("\\*+/?\\z", "");
source = comment;
length = source.length();
index = 0;