Skip to content

Commit

Permalink
removed AOS Manager because no more used
Browse files Browse the repository at this point in the history
  • Loading branch information
gdesiato committed Jan 8, 2025
1 parent fb29353 commit 234d0ae
Showing 1 changed file with 0 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@ public class GUIIncrementalArchive implements Serializable {

private List<GUITemplate> templates = new ArrayList<>();

private Long aosManagerId;

public GUIIncrementalArchive() {
folder = new GUIFolder();
folder.setId(5);
Expand Down Expand Up @@ -86,12 +84,4 @@ public void setId(long id) {
public List<Long> getTemplateIds() {
return templates.stream().map(t -> t.getId()).collect(Collectors.toList());
}

public Long getAosManagerId() {
return aosManagerId;
}

public void setAosManagerId(Long aosManagerId) {
this.aosManagerId = aosManagerId;
}
}

0 comments on commit 234d0ae

Please sign in to comment.