diff --git a/java/ql/src/Security/CWE/CWE-312/CleartextStorageAndroidFilesystem.java b/java/ql/src/Security/CWE/CWE-312/CleartextStorageAndroidFilesystem.java index 5b4911333f6..2eb19c31183 100644 --- a/java/ql/src/Security/CWE/CWE-312/CleartextStorageAndroidFilesystem.java +++ b/java/ql/src/Security/CWE/CWE-312/CleartextStorageAndroidFilesystem.java @@ -1,5 +1,5 @@ public void fileSystemStorageUnsafe(String name, String password) { - // BAD - sensitive data stored in plaintext + // BAD - sensitive data stored in cleartext FileWriter fw = new FileWriter("some_file.txt"); fw.write(name + ":" + password); fw.close();