Skip to content

Commit fa485f7

Browse files
committed
hotfix: Remove the problematic @immutable annotation.
1 parent 6609191 commit fa485f7

File tree

3 files changed

+0
-10
lines changed

3 files changed

+0
-10
lines changed

suffix-tree/pom.xml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,6 @@
3333
<artifactId>guava</artifactId>
3434
<version>${guava.version}</version>
3535
</dependency>
36-
<dependency>
37-
<groupId>com.google.code.findbugs</groupId>
38-
<artifactId>findbugs</artifactId>
39-
<version>${findbugs.version}</version>
40-
</dependency>
4136
<dependency>
4237
<groupId>diffr</groupId>
4338
<artifactId>util</artifactId>

suffix-tree/src/main/java/diffr/suffixtree/impl/Edge.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
import diffr.util.ListIterators;
88
import javolution.util.FastCollection.Record;
99

10-
import javax.annotation.concurrent.Immutable;
1110
import java.util.ListIterator;
1211

1312
import static com.google.common.base.Preconditions.checkArgument;
@@ -23,7 +22,6 @@
2322
* @author Jakub D Kozlowski
2423
* @since 0.1
2524
*/
26-
@Immutable
2725
public final class Edge {
2826

2927
private final Record parent;

suffix-tree/src/main/java/diffr/suffixtree/impl/NodeKey.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
import diffr.suffixtree.SuffixTree;
55
import javolution.util.FastCollection.Record;
66

7-
import javax.annotation.concurrent.Immutable;
8-
97
import static com.google.common.base.Preconditions.checkNotNull;
108

119
/**
@@ -16,7 +14,6 @@
1614
* @author Jakub D Kozlowski
1715
* @since 0.1
1816
*/
19-
@Immutable
2017
public final class NodeKey<E extends Comparable> {
2118

2219
private final Record parent;

0 commit comments

Comments
 (0)