Skip to content

Commit

Permalink
revert DATA_ID_STR_SZ field change (#893)
Browse files Browse the repository at this point in the history
  • Loading branch information
cfkoehler authored Aug 23, 2024
1 parent 3032750 commit 94a5edd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/emissary/parser/DataIdentifier.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ public class DataIdentifier {
public static final String UNKNOWN_TYPE = "simple";

// Size of string to test
protected static final int DATA_ID_STR_SZ = 100;
@SuppressWarnings("ConstantField")
protected int DATA_ID_STR_SZ = 100;

// Things we know how to identify
protected Map<String, String> typesMap = new HashMap<>();
Expand Down

0 comments on commit 94a5edd

Please sign in to comment.