We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4efb736 commit 18cb16bCopy full SHA for 18cb16b
.gitignore
@@ -1,3 +1,4 @@
1
/nbproject/private/
2
/build/
3
-/dist/
+/dist/
4
+/target/
pom.xml
@@ -7,7 +7,7 @@
7
<modelVersion>4.0.0</modelVersion>
8
<groupId>info.debatty</groupId>
9
<artifactId>java-string-similarity</artifactId>
10
- <version>0.1</version>
+ <version>0.3</version>
11
<packaging>jar</packaging>
12
13
<name>${project.artifactId}</name>
src/main/java/info/debatty/java/stringsimilarity/KShingling.java
@@ -37,7 +37,7 @@ public static void main(String[] args) {
37
}
38
System.out.print("\n");
39
40
- ks.add("Another shingle?");
+ ks.add("This should trigger an exception!");
41
42
43
protected int k = 5;
0 commit comments