Normalize line endings · DayNightCoder/docker-java@96da4b1 · GitHub
Skip to content

Commit 96da4b1

Browse files
author
Sean Fitts
committed
Normalize line endings
This uses the recommended strategy to normalize line endings for mixed Windows/*nix development. We also make sure that the shell scripts used for testing have Unix line endings on all platforms so they will function properly.
1 parent 6a2110c commit 96da4b1

18 files changed

Lines changed: 2123 additions & 2106 deletions

.gitattributes

Lines changed: 17 additions & 0 deletions
Lines changed: 35 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,35 @@
1-
package com.github.dockerjava.client.model;
2-
3-
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
4-
import com.fasterxml.jackson.annotation.JsonProperty;
5-
6-
/**
7-
*
8-
* @author Konstantin Pelykh (kpelykh@gmail.com)
9-
*
10-
*/
11-
@JsonIgnoreProperties(ignoreUnknown = true)
12-
public class ChangeLog {
13-
14-
@JsonProperty("Path")
15-
private String path;
16-
17-
@JsonProperty("Kind")
18-
private int kind;
19-
20-
public String getPath() {
21-
return path;
22-
}
23-
24-
public int getKind() {
25-
return kind;
26-
}
27-
28-
@Override
29-
public String toString() {
30-
return "ChangeLog{" +
31-
"path='" + path + '\'' +
32-
", kind=" + kind +
33-
'}';
34-
}
35-
}
1+
package com.github.dockerjava.client.model;
2+
3+
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
4+
import com.fasterxml.jackson.annotation.JsonProperty;
5+
6+
/**
7+
*
8+
* @author Konstantin Pelykh (kpelykh@gmail.com)
9+
*
10+
*/
11+
@JsonIgnoreProperties(ignoreUnknown = true)
12+
public class ChangeLog {
13+
14+
@JsonProperty("Path")
15+
private String path;
16+
17+
@JsonProperty("Kind")
18+
private int kind;
19+
20+
public String getPath() {
21+
return path;
22+
}
23+
24+
public int getKind() {
25+
return kind;
26+
}
27+
28+
@Override
29+
public String toString() {
30+
return "ChangeLog{" +
31+
"path='" + path + '\'' +
32+
", kind=" + kind +
33+
'}';
34+
}
35+
}
Lines changed: 87 additions & 87 deletions

0 commit comments

Comments
 (0)