diff --git a/README.md b/README.md index 40efacc879..0837bc3e38 100644 --- a/README.md +++ b/README.md @@ -13,3 +13,5 @@ The `jenkins` directory contains an example of the `Jenkinsfile` (i.e. Pipeline) you'll be creating yourself during the tutorial and the `scripts` subdirectory contains a shell script with commands that are executed when Jenkins processes the "Deliver" stage of your Pipeline. + +Adding a change to the README file. diff --git a/src/main/java/com/mycompany/app/App.java b/src/main/java/com/mycompany/app/App.java index 5a6d57214d..df6ab8b54e 100644 --- a/src/main/java/com/mycompany/app/App.java +++ b/src/main/java/com/mycompany/app/App.java @@ -6,14 +6,14 @@ public class App { - private final String message = "Hello World!"; + /** private final String message = "Hello World!"; public App() {} public static void main(String[] args) { System.out.println(new App().getMessage()); } - +*/ private final String getMessage() { return message; }