Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions exercises/practice/two-bucket/src/main/java/TwoBucket.java
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
class TwoBucket {

TwoBucket(int bucketOneCap, int bucketTwoCap, int desiredLiters, String startBucket) {
throw new UnsupportedOperationException("Please implement the TwoBucket(int, int, int, String) constructor.");
throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
}

Result getResult() {
throw new UnsupportedOperationException("Please implement the TwoBucket(int, int, int, String) constructor.");
throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
}

}