From baedcf3c0d4298c24ce016116d21cc8986955710 Mon Sep 17 00:00:00 2001 From: lowrymchristian <55266225+lowrymchristian@users.noreply.github.com> Date: Wed, 7 Sep 2022 18:27:12 -0500 Subject: [PATCH] Update tech-jobs-console.rst Instructions told students they'd need to find a place in the main method to invoke findByValue, but starter code already includes invocation of findByValue: https://github.com/LaunchCodeEducation/techjobs-console-java-graded/blob/master/src/main/java/TechJobs.java#L65 --- src/assignments/tech-jobs-console.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/assignments/tech-jobs-console.rst b/src/assignments/tech-jobs-console.rst index d7d82e82..c6e4e41a 100644 --- a/src/assignments/tech-jobs-console.rst +++ b/src/assignments/tech-jobs-console.rst @@ -427,8 +427,8 @@ for you but contains none of the code needed to work (you should leave the ``loa ``findByColumnAndValue``, since your code will look similar in some ways. -You'll need to call ``findByValue`` from somewhere in ``main``. We'll -leave it up to you to find where. You might have noticed that when you + +You might have noticed that when you try to search all columns using the app, a message is printed, so that is a good clue to help you find where to place this new method call. Once you find where to call your new method, you can *Run* the program