forked from alicjab/registration-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGitKataRegistrationRequestBuilder.java
25 lines (22 loc) · 1.53 KB
/
GitKataRegistrationRequestBuilder.java
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
import java.io.IOException;
import java.io.PrintWriter;
public class GitKataRegistrationRequestBuilder {
private static final char[] CONTENT = {112, 117, 98, 108, 105, 99, 32, 99, 108, 97, 115,
115, 32, 71, 105, 116, 75, 97, 116, 97, 82, 101, 103, 105, 115, 116, 114, 97, 116, 105,
111, 110, 82, 101, 113, 117, 101, 115, 116, 32, 123, 10, 32, 112, 117, 98, 108, 105, 99,
32, 115, 116, 97, 116, 105, 99, 32, 118, 111, 105, 100, 32, 109, 97, 105, 110, 40, 83, 116,
114, 105, 110, 103, 91, 93, 32, 97, 114, 103, 115, 41, 32, 123, 10, 83, 121, 115, 116, 101,
109, 46, 111, 117, 116, 46, 112, 114, 105, 110, 116, 108, 110, 40, 34, 76, 101, 116, 39, 115,
32, 109, 101, 101, 116, 46, 32, 76, 101, 116, 39, 115, 32, 114, 111, 99, 107, 46, 32, 80, 108,
101, 97, 115, 101, 32, 97, 99, 99, 101, 112, 116, 32, 109, 121, 32, 114, 101, 103, 105, 115,
116, 114, 97, 116, 105, 111, 110, 32, 114, 101, 113, 117, 101, 115, 116, 46, 92, 110, 92, 110,
82, 101, 103, 97, 114, 100, 115, 44, 32, 92, 110, 84, 111, 109, 101, 107, 32, 70, 97, 109, 117,
108, 115, 107, 105, 32, 60, 102, 97, 109, 117, 108, 115, 107, 105, 64, 103, 109, 97, 105, 108,
46, 99, 111, 109, 62, 34, 41, 59, 32, 10, 125, 125
};
public static void main(String[] args) throws IOException {
PrintWriter printWriter = new PrintWriter("GitKataRegistrationRequest.java");
printWriter.print(CONTENT);
printWriter.close();
}
}