mirror of
https://github.com/github/codeql.git
synced 2026-02-17 23:43:42 +01:00
11 lines
337 B
Java
11 lines
337 B
Java
public static void printCharacterCodes_Bad(String[] strings) {
|
|
if (strings != null) {
|
|
for (String s : strings) {
|
|
if (s != null) {
|
|
for (int i = 0; i < s.length(); i++) {
|
|
System.out.println(s.charAt(i) + "=" + (int) s.charAt(i));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |