Skip to content

Commit

Permalink
Removes revision property.
Browse files Browse the repository at this point in the history
  • Loading branch information
simonbrowndotje committed Sep 11, 2024
1 parent 43ec4c8 commit 9c5da2c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 20 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ private void init(Workspace workspace, String plaintext, EncryptionStrategy encr
setName(workspace.getName());
setDescription(workspace.getDescription());
setVersion(workspace.getVersion());
setRevision(workspace.getRevision());
setLastModifiedUser(workspace.getLastModifiedUser());
setLastModifiedAgent(workspace.getLastModifiedAgent());

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ public abstract class AbstractWorkspace implements PropertyHolder {
private String name;
private String description;
private String version;
private Long revision;
private Date lastModifiedDate;
private String lastModifiedUser;
private String lastModifiedAgent;
Expand Down Expand Up @@ -111,24 +110,6 @@ public void setVersion(String version) {
}


/**
* Gets the revision number of this workspace.
*
* @return the revision number
*/
public Long getRevision() {
return revision;
}

/**
* Sets the revision number of this workspace.
*
* @param revision a number
*/
public void setRevision(Long revision) {
this.revision = revision;
}

/**
* Gets the last modified date of this workspace.
*
Expand Down

0 comments on commit 9c5da2c

Please sign in to comment.