mirror of
https://github.com/antebudimir/tempus.git
synced 2026-01-01 18:03:33 +00:00
Code cleanup
This commit is contained in:
parent
6675549ca6
commit
4236c3202f
1 changed files with 6 additions and 2 deletions
|
|
@ -159,8 +159,12 @@ public class Server implements Parcelable {
|
|||
}
|
||||
|
||||
public static final Creator<Server> CREATOR = new Creator<Server>() {
|
||||
public Server createFromParcel(Parcel in) { return new Server(in); }
|
||||
public Server createFromParcel(Parcel in) {
|
||||
return new Server(in);
|
||||
}
|
||||
|
||||
public Server[] newArray(int size) { return new Server[size]; }
|
||||
public Server[] newArray(int size) {
|
||||
return new Server[size];
|
||||
}
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue