Exemplo n.º 1
0
 /** Search movie. */
 private void searchMovie() {
   String movieName;
   System.out.println(LINE_SPACING);
   System.out.print("Enter the name of the movie you want to search for: ");
   movieName = sc.nextLine();
   System.out.println(LINE_SPACING);
   boolean isSearched = movieUser.searchMovie(movieName);
   if (!isSearched) {
     System.out.println("Movie not found. Please try again!");
   }
 }