File tree Expand file tree Collapse file tree 3 files changed +0
-10
lines changed
src/main/java/diffr/suffixtree/impl Expand file tree Collapse file tree 3 files changed +0
-10
lines changed Original file line number Diff line number Diff line change 33
33
<artifactId >guava</artifactId >
34
34
<version >${guava.version} </version >
35
35
</dependency >
36
- <dependency >
37
- <groupId >com.google.code.findbugs</groupId >
38
- <artifactId >findbugs</artifactId >
39
- <version >${findbugs.version} </version >
40
- </dependency >
41
36
<dependency >
42
37
<groupId >diffr</groupId >
43
38
<artifactId >util</artifactId >
Original file line number Diff line number Diff line change 7
7
import diffr .util .ListIterators ;
8
8
import javolution .util .FastCollection .Record ;
9
9
10
- import javax .annotation .concurrent .Immutable ;
11
10
import java .util .ListIterator ;
12
11
13
12
import static com .google .common .base .Preconditions .checkArgument ;
23
22
* @author Jakub D Kozlowski
24
23
* @since 0.1
25
24
*/
26
- @ Immutable
27
25
public final class Edge {
28
26
29
27
private final Record parent ;
Original file line number Diff line number Diff line change 4
4
import diffr .suffixtree .SuffixTree ;
5
5
import javolution .util .FastCollection .Record ;
6
6
7
- import javax .annotation .concurrent .Immutable ;
8
-
9
7
import static com .google .common .base .Preconditions .checkNotNull ;
10
8
11
9
/**
16
14
* @author Jakub D Kozlowski
17
15
* @since 0.1
18
16
*/
19
- @ Immutable
20
17
public final class NodeKey <E extends Comparable > {
21
18
22
19
private final Record parent ;
You can’t perform that action at this time.
0 commit comments