From e459dbf684ae465ce5d9ff963b9c4408388706b7 Mon Sep 17 00:00:00 2001 From: Mehrdad Shirvani Date: Mon, 27 Apr 2026 09:26:01 +0330 Subject: [PATCH] fix: add more detailed comments in MovieService --- src/main/java/movie/apis/MovieService.java | 28 ++++++++++++---------- 1 file changed, 15 insertions(+), 13 deletions(-) diff --git a/src/main/java/movie/apis/MovieService.java b/src/main/java/movie/apis/MovieService.java index d49f7ee..3f053f5 100644 --- a/src/main/java/movie/apis/MovieService.java +++ b/src/main/java/movie/apis/MovieService.java @@ -153,19 +153,21 @@ public class MovieService { */ /* EXAMPLE OUTPUT: - * ======================================================================= - * THE SHAWSHANK REDEMPTION (1994) - * ======================================================================= - * Rating: 9.3/10 | Votes: 1,738,596 - * Director: Frank Darabont - * Cast: Tim Robbins, Morgan Freeman, Bob Gunton, William Sadler - * Genre: Crime, Drama - * Runtime: 142 min | Rated: R - * Country: USA | Released: 14 Oct 1994 - * Plot: Two imprisoned men bond over a number of years, finding - * solace and eventual redemption through acts of common decency. - * Awards: Nominated for 7 Oscars. Another 19 wins & 30 nominations. - * ======================================================================= + + ======================================================================= + THE SHAWSHANK REDEMPTION (1994) + ======================================================================= + Rating: 9.3/10 | Votes: 1,738,596 + Director: Frank Darabont + Cast: Tim Robbins, Morgan Freeman, Bob Gunton, William Sadler + Genre: Crime, Drama + Runtime: 142 min | Rated: R + Country: USA | Released: 14 Oct 1994 + Plot: Two imprisoned men bond over a number of years, finding + solace and eventual redemption through acts of common decency. + Awards: Nominated for 7 Oscars. Another 19 wins & 30 nominations. + ======================================================================= + */ public void displayMovieDetails(Long movieId) {