forked from github/codeql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathA.java
More file actions
31 lines (30 loc) · 621 Bytes
/
A.java
File metadata and controls
31 lines (30 loc) · 621 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
public class A {
public void missing() {
String s;
s = "this text" +
"is missing a space";
s = "the class java.util.ArrayList" +
"without a space";
s = "This isn't" +
"right.";
s = "There's 1" +
"thing wrong";
s = "There's A/B" +
"and no space";
s = "Wait for it...." +
"No space!";
s = "Is there a space?" +
"No!";
}
public void ok() {
String s;
s = "some words%n" +
"and more";
s = "some words\n" +
"and more";
s = "the class java.util." +
"ArrayList";
s = "some data: a,b,c," +
"d,e,f";
}
}