Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Topvennie committed Mar 29, 2024
1 parent 2262cbb commit c173beb
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/telraam/logic/positioner/CircularQueue.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public CircularQueue(int maxSize) {
@Override
public boolean add(T e) {
if (this.size >= this.maxSize) {
super.removeFirst();
removeFirst();
this.size--;
}

Expand Down
1 change: 0 additions & 1 deletion src/main/java/telraam/logic/positioner/Positioner.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,4 @@
public interface Positioner {
void handle(Detection detection);

void calculatePositions();
}

0 comments on commit c173beb

Please sign in to comment.