We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 725c4b8 commit 9cd0feeCopy full SHA for 9cd0fee
1 file changed
exercises/concept/cars-assemble/src/main/java/CarsAssemble.java
@@ -1,10 +1,10 @@
1
public class CarsAssemble {
2
3
public double productionRatePerHour(int speed) {
4
- throw new UnsupportedOperationException("Please implement the AssemblyLine.productionRateperHour() method");
+ throw new UnsupportedOperationException("Please implement the CarsAssemble.productionRateperHour() method");
5
}
6
7
public int workingItemsPerMinute(int speed) {
8
- throw new UnsupportedOperationException("Please implement the AssemblyLine.workingItemsPerMinute() method");
+ throw new UnsupportedOperationException("Please implement the CarsAssemble.workingItemsPerMinute() method");
9
10
0 commit comments