Skip to content

Commit b68f85c

Browse files
committed
fix: 불필요한 로그 삭제
Signed-off-by: Seunghwan Hong <hj332921@gmail.com>
1 parent 68ecfd1 commit b68f85c

2 files changed

Lines changed: 1 addition & 3 deletions

File tree

java/MeCab.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@
1414

1515
public class MeCab implements MeCabConstants {
1616
public static synchronized void initialize() throws UnsatisfiedLinkError {
17-
System.out.println("Loading MeCab library...");
18-
1917
String nativeLibPath = "/org/chasen/mecab/native";
2018
if (System.getProperty("os.name").indexOf("Mac") >= 0) {
2119
nativeLibPath = nativeLibPath + "/macos";

java/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ publishing {
77
maven(MavenPublication) {
88
groupId = 'com.scatterlab.mecab-ko-java'
99
artifactId = 'mecab-ko-java'
10-
version = '1.0.3'
10+
version = '1.0.4'
1111

1212
artifact 'MeCab.jar'
1313
}

0 commit comments

Comments
 (0)