From a6bdf858f29db33deb26f3682e68694b6be0494e Mon Sep 17 00:00:00 2001 From: Thomas Hughes Date: Wed, 5 Aug 2020 17:39:49 -0500 Subject: [PATCH] fix javadoc error --- .automation/test/java/java_good_1.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.automation/test/java/java_good_1.java b/.automation/test/java/java_good_1.java index 3b9810e5..e2d0d7e3 100644 --- a/.automation/test/java/java_good_1.java +++ b/.automation/test/java/java_good_1.java @@ -3,11 +3,11 @@ package com.superlinter.JavaGood; FileName : "HelloWorld.java" */ /** - * Represents a good Java file + * Represents a good Java file. */ public static class JavaGood { - // Prints "Hello, World" to the terminal window - private void JavaGood() { + // Prints "Hello, World" to the terminal window. + private void helloWorld() { System.out.println("Hello, World"); } }