Skip to content
Snippets Groups Projects
Commit 01904462 authored by FurWaz's avatar FurWaz
Browse files

Set constructors public

parent ab6fa8ac
No related branches found
No related tags found
No related merge requests found
......@@ -17,15 +17,15 @@ public class PhotoInfo {
Bitmap image;
List<PathView> pathViews = new ArrayList<>();
PhotoInfo() {
public PhotoInfo() {
}
PhotoInfo(Bitmap im) {
public PhotoInfo(Bitmap im) {
this.image = im;
}
PhotoInfo(Bitmap im, Orientation orientation) {
public PhotoInfo(Bitmap im, Orientation orientation) {
this.image = im;
this.orientation = orientation;
}
......
......@@ -14,11 +14,11 @@ public class RoomInfo {
RoomType type = RoomType.ROOM;
List<ZoneInfo> zones = new ArrayList<>();
RoomInfo() {
public RoomInfo() {
}
RoomInfo(String name) {
public RoomInfo(String name) {
this.name = name;
}
......
......@@ -4,7 +4,7 @@ public class WalkInfo {
ZoneInfo destination;
Orientation orientation = Orientation.NORTH;
WalkInfo() {
public WalkInfo() {
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment