fix: add period to PrintExportService as MR written before new checkstyle

This commit is contained in:
Zhongheng Liu 2025-12-20 00:31:44 +02:00
commit dee91f9245
Signed by: steven
GPG key ID: F69B980899C1C09D

View file

@ -9,7 +9,7 @@ import java.nio.file.Path;
public class PrintExportService { public class PrintExportService {
/** /**
* Builds the String with all the recipe data in a human-readable format and returns said string * Builds the String with all the recipe data in a human-readable format and returns said string.
* @param recipe - Recipe Object that needs to be converted * @param recipe - Recipe Object that needs to be converted
* @return - String Result that is the converted recipe object * @return - String Result that is the converted recipe object
*/ */
@ -27,7 +27,7 @@ public class PrintExportService {
} }
/** /**
* Method that checks if the directory path of the selected directory is valid and throws and error * Method that checks if the directory path of the selected directory is valid and throws and error.
* if not valid * if not valid
* @param path - Path to directory * @param path - Path to directory
*/ */
@ -46,7 +46,7 @@ public class PrintExportService {
/** /**
* Method that exports a plain-text String of recipe data, into a newly created file from * Method that exports a plain-text String of recipe data, into a newly created file from
* a selected directory provided as a path to the method and names said file based on the * a selected directory provided as a path to the method and names said file based on the
* nameOfFile param * nameOfFile param.
* @param recipeData - String containing recipe data that will be written to file * @param recipeData - String containing recipe data that will be written to file
* @param dirFilePath - Path to Folder * @param dirFilePath - Path to Folder
* @param nameOfFile - Name of file to be created * @param nameOfFile - Name of file to be created