Skip to content

Commit

Permalink
日本語と英語が混ざった文章に間が開いてしまうのを修正
Browse files Browse the repository at this point in the history
  • Loading branch information
shiro8613 authored Feb 23, 2024
1 parent 61eda53 commit 35625a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/main/java/dev/felnull/itts/core/dict/RegexUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public String replaceText(String text) {
createdText.add(txt);
}

return String.join(" ", createdText);
return String.join("", createdText);
}


Expand Down Expand Up @@ -111,4 +111,4 @@ public RegexOption(int priority, String replacedText, Function<String, Boolean>
}
}

}
}

0 comments on commit 35625a4

Please sign in to comment.