Skip to content

Commit 22aad17

Browse files
atorralbaethanpalm
andcommitted
Apply review suggestions
Co-authored-by: Ethan Palm <[email protected]>
1 parent 9bbba3c commit 22aad17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

java/ql/src/Security/CWE/CWE-312/CleartextStorageAndroidFilesystem.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
public void fileSystemStorageUnsafe(String name, String password) {
2-
// BAD - sensitive data stored in plaintext
2+
// BAD - sensitive data stored in cleartext
33
FileWriter fw = new FileWriter("some_file.txt");
44
fw.write(name + ":" + password);
55
fw.close();

0 commit comments

Comments
 (0)