Browse Source

No need to make command line runner public

Matt Raible 7 years ago
parent
commit
43ff824957
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      TUTORIAL.md

+ 1
- 1
TUTORIAL.md View File

@@ -89,7 +89,7 @@ import org.springframework.stereotype.Component;
89 89
 import java.util.stream.Stream;
90 90
 
91 91
 @Component
92
-public class BeerCommandLineRunner implements CommandLineRunner {
92
+class BeerCommandLineRunner implements CommandLineRunner {
93 93
     private final BeerRepository repository;
94 94
 
95 95
     public BeerCommandLineRunner(BeerRepository repository) {