...
Code Block | ||
---|---|---|
| ||
public static final int IN_STR_LEN = 18; public static final int OUT_STR_LEN = 2012; |
Compliant Solution
The relationship between the two values should be represented in the definitions.
...
...
Code Block | ||
---|---|---|
| ||
public static final int IN_STR_LEN = 18; public static final int OUT_STR_LEN = 2012; |
The relationship between the two values should be represented in the definitions.
...