Commit 91a0ec45 authored by Greg Messner's avatar Greg Messner
Browse files

Changed is_shared to isShared (#154).

parent bc4b9abd
...@@ -15,7 +15,7 @@ public class Runner { ...@@ -15,7 +15,7 @@ public class Runner {
private Integer id; private Integer id;
private String description; private String description;
private Boolean active; private Boolean active;
private Boolean is_shared; private Boolean isShared;
private String name; private String name;
private Boolean online; private Boolean online;
private RunnerStatus status; private RunnerStatus status;
...@@ -69,11 +69,11 @@ public class Runner { ...@@ -69,11 +69,11 @@ public class Runner {
} }
public Boolean getIs_shared() { public Boolean getIs_shared() {
return is_shared; return isShared;
} }
public void setIs_shared(Boolean is_shared) { public void setIs_shared(Boolean is_shared) {
this.is_shared = is_shared; this.isShared = is_shared;
} }
public String getName() { public String getName() {
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment