Skip to content

Commit 2c5fe9e

Browse files
author
jjcapparell
committed
chore: updated folder names to be standard
1 parent 74bbcfa commit 2c5fe9e

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

lesson_16/objects/objects_app/src/main/java/com/codedifferently/lesson16/Lunch/InvalidCalorieException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.codedifferently.lesson16.Lunch;
1+
package com.codedifferently.lesson16.lunch;
22

33
public class InvalidCalorieException extends Exception {
44
public InvalidCalorieException(String message) {

lesson_16/objects/objects_app/src/main/java/com/codedifferently/lesson16/Lunch/Lunch.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.codedifferently.lesson16.Lunch;
1+
package com.codedifferently.lesson16.lunch;
22

33
import java.util.ArrayList;
44

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
1-
package com.codedifferently.lesson16.LunchTest;
1+
package com.codedifferently.lesson16.lunch;
22

33
import static org.junit.jupiter.api.Assertions.assertEquals;
44
import static org.junit.jupiter.api.Assertions.assertTrue;
55
import static org.junit.jupiter.api.Assertions.fail;
66

7-
import com.codedifferently.lesson16.Lunch.InvalidCalorieException;
8-
import com.codedifferently.lesson16.Lunch.Lunch;
97
import java.io.ByteArrayOutputStream;
108
import java.io.PrintStream;
119
import java.util.ArrayList;

0 commit comments

Comments
 (0)