Skip to content

Commit

Permalink
Minor cleanups
Browse files Browse the repository at this point in the history
  • Loading branch information
ethauvin committed Oct 28, 2024
1 parent 77b9ea0 commit f8cceed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
* @since 1.0
*/
public class PropertyFileOperation extends AbstractOperation<PropertyFileOperation> {
private final static Logger LOGGER = Logger.getLogger(PropertyFileOperation.class.getName());
private static final Logger LOGGER = Logger.getLogger(PropertyFileOperation.class.getName());
private final List<EntryBase<?>> entries_ = new ArrayList<>();
private String comment_ = "";
private boolean failOnWarning_;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
* @since 1.0
*/
public final class PropertyFileUtils {
private final static Logger LOGGER = Logger.getLogger(PropertyFileUtils.class.getName());
private static final Logger LOGGER = Logger.getLogger(PropertyFileUtils.class.getName());

private PropertyFileUtils() {
// no-op
Expand Down

0 comments on commit f8cceed

Please sign in to comment.