Skip to content

Commit

Permalink
Revert "Modify IBillsHandler (#106)"
Browse files Browse the repository at this point in the history
This reverts commit 7cddcba.
  • Loading branch information
sda authored and DaniilSolovyov committed May 7, 2024
1 parent 7cddcba commit 4b4cc31
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 27 deletions.
13 changes: 0 additions & 13 deletions src/main/java/com/untill/driver/interfaces/bills/Bill.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,6 @@ public class Bill {
* Waiter ID
*/
private Long waiterId;
/**
* The flag is <tt>true</tt> if the <tt>Sales area</tt> setting <tt>Close tables manually</tt> is checked otherwise <tt>false</tt>
*/
private boolean dirty;


/**
Expand Down Expand Up @@ -408,14 +404,6 @@ public void setWaiterId(Long waiterId) {
this.waiterId = waiterId;
}

public boolean isDirty() {
return dirty;
}

public void setDirty(boolean dirty) {
this.dirty = dirty;
}

@Override
public String toString() {
return "Bill{"
Expand All @@ -442,7 +430,6 @@ public String toString() {
+ ", appliedDiscountGroups=" + appliedDiscountGroups
+ ", extra=" + extra
+ ", waiterId=" + waiterId
+ ", dirty=" + dirty
+ '}';
}
}

This file was deleted.

0 comments on commit 4b4cc31

Please sign in to comment.