comply with checkstyle

This commit is contained in:
SowinskiBraeden committed 2025-02-18 17:41:30 -08:00
1 parent 85d402ae00
commit 7a9a50fcfd
1 file changed
+4 -1
@@ -14,6 +14,10 @@ import java.io.FileNotFoundException;
* @version 1.0.0 * @version 1.0.0
*/ */
public class BaseballStats { public class BaseballStats {
/** basePath of the package. */
private static String basePath = "src/ca/bcit/comp1510/lab06/";
/** /**
* main program entry. * main program entry.
* Reads baseball stats from a file and counts * Reads baseball stats from a file and counts
@@ -27,7 +31,6 @@ public class BaseballStats {
String fileName; String fileName;
Scanner scan = new Scanner(System.in); Scanner scan = new Scanner(System.in);
String basePath = "src/ca/bcit/comp1510/lab06/";
System.out.print("Enter the name of the input file: "); System.out.print("Enter the name of the input file: ");
fileName = scan.nextLine(); fileName = scan.nextLine();