Remove unused property

This commit is contained in:
René Pfeuffer
2020-02-26 16:05:49 +01:00
parent ffdd80df61
commit 8ff870ccb1

View File

@@ -147,10 +147,6 @@ public abstract class FileBaseCommandRequest
this.revision = revision;
}
public void setLimit(int limit) {
this.limit = limit;
}
//~--- get methods ----------------------------------------------------------
/**
@@ -175,10 +171,6 @@ public abstract class FileBaseCommandRequest
return revision;
}
public int getLimit() {
return limit;
}
//~--- methods --------------------------------------------------------------
/**
@@ -216,6 +208,4 @@ public abstract class FileBaseCommandRequest
/** Field description */
private String revision;
private int limit;
}