Skip to content

Commit

Permalink
Replaced call to findByValue with a "not implemented" method to match…
Browse files Browse the repository at this point in the history
… instructions in curriculum. (Issue #52)
  • Loading branch information
mlambert125 committed Sep 16, 2024
1 parent 5d77106 commit 65e800a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/TechJobs.java
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public static void main (String[] args) {
String searchTerm = in.nextLine();

if (searchField.equals("all")) {
printJobs(JobData.findByValue(searchTerm));
System.out.println("Search all fields not implemented yet.");
} else {
printJobs(JobData.findByColumnAndValue(searchField, searchTerm));
}
Expand Down

0 comments on commit 65e800a

Please sign in to comment.