Skip to content

Commit b2c66a6

Browse files
committedFeb 9, 2024
#23 Make constant private which is only used local
Signed-off-by: Sven Strittmatter <sven.strittmatter@iteratec.com>
1 parent 49ca35d commit b2c66a6

File tree

1 file changed

+1
-3
lines changed
  • src/main/java/io/securecodebox/persistence/defectdojo/model

1 file changed

+1
-3
lines changed
 

‎src/main/java/io/securecodebox/persistence/defectdojo/model/ScanFile.java

+1-3
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,8 @@ public final class ScanFile {
1414
* <p>
1515
* It does not matter however unless the parser pays attention to file endings like json or xml.
1616
* </p>
17-
*
18-
* TODO: Can this be private?
1917
*/
20-
static final String DEFAULT_NAME = "default-name.txt";
18+
private static final String DEFAULT_NAME = "default-name.txt";
2119

2220
private String content;
2321

0 commit comments

Comments
 (0)
Please sign in to comment.