Skip to content

Commit 37a43cc

Browse files
committed
Fix typo in TripleCount constant name.
1 parent bec0ebf commit 37a43cc

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

metafacture-triples/src/main/java/org/metafacture/triples/TripleCount.java

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,16 @@
3636
@FluxCommand("count-triples")
3737
public final class TripleCount extends AbstractTripleSort {
3838

39-
public static final String DEFAULT_COUNTP_REDICATE = "count";
39+
public static final String DEFAULT_COUNT_PREDICATE = "count";
40+
41+
@Deprecated/*(since="5.3", forRemoval=true)*/
42+
public static final String DEFAULT_COUNTP_REDICATE = DEFAULT_COUNT_PREDICATE;
4043

4144
private static final Triple INIT = new Triple("", "", "");
4245

4346
private Triple current = INIT;
4447
private int count;
45-
private String countPredicate = DEFAULT_COUNTP_REDICATE;
48+
private String countPredicate = DEFAULT_COUNT_PREDICATE;
4649
private Comparator<Triple> comparator;
4750

4851
/**

0 commit comments

Comments
 (0)