Removed published from platforms

This commit is contained in:
Chatura Dilan 2017-06-14 12:45:15 +05:30
parent ac871fdbce
commit d7b784b073
2 changed files with 0 additions and 11 deletions

View File

@ -74,8 +74,6 @@ public class Platform implements Cloneable {
}
private boolean published;
public int getId() {
return id;
}
@ -132,14 +130,6 @@ public class Platform implements Cloneable {
this.tags = tags;
}
public boolean isPublished() {
return published;
}
public void setPublished(boolean published) {
this.published = published;
}
public boolean isFileBased() {
return fileBased;
}

View File

@ -62,7 +62,6 @@ public class GenericPlatformDAOImpl extends AbstractDAOImpl implements PlatformD
platform.setId(rs.getInt("ID"));
platform.setName(rs.getString("NAME"));
platform.setIdentifier(rs.getString("IDENTIFIER"));
platform.setPublished(rs.getBoolean("PUBLISHED"));
}
return platform;