fix checkstyle errors

This commit is contained in:
Ilkka Seppälä 2022-01-08 21:37:15 +02:00
parent 85ee24f90d
commit 686fdf5812
No known key found for this signature in database
GPG Key ID: 31B7C8F5CC412ECB
2 changed files with 4 additions and 4 deletions

View File

@ -23,12 +23,12 @@
package com.iluwatar.execute.around; package com.iluwatar.execute.around;
import lombok.extern.slf4j.Slf4j;
import java.io.File; import java.io.File;
import java.io.IOException; import java.io.IOException;
import java.util.Scanner; import java.util.Scanner;
import lombok.extern.slf4j.Slf4j;
/** /**
* The Execute Around idiom specifies executable code before and after a method. Typically * The Execute Around idiom specifies executable code before and after a method. Typically
* the idiom is used when the API has methods to be executed in pairs, such as resource * the idiom is used when the API has methods to be executed in pairs, such as resource

View File

@ -23,11 +23,11 @@
package com.iluwatar.execute.around; package com.iluwatar.execute.around;
import lombok.extern.slf4j.Slf4j;
import java.io.FileWriter; import java.io.FileWriter;
import java.io.IOException; import java.io.IOException;
import lombok.extern.slf4j.Slf4j;
/** /**
* SimpleFileWriter handles opening and closing file for the user. The user only has to specify what * SimpleFileWriter handles opening and closing file for the user. The user only has to specify what
* to do with the file resource through {@link FileWriterAction} parameter. * to do with the file resource through {@link FileWriterAction} parameter.