Skip to content

Commit

Permalink
Removed unused constant I18N
Browse files Browse the repository at this point in the history
Signed-off-by: David Matějček <david.matejcek@omnifish.ee>
  • Loading branch information
dmatej committed Feb 20, 2024
1 parent 5db076f commit 6595491
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2022 Contributors to the Eclipse Foundation
* Copyright (c) 2022, 2023 Contributors to the Eclipse Foundation
* Copyright (c) 2006, 2018 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
Expand All @@ -17,7 +17,6 @@

package com.sun.enterprise.util.io;

import com.sun.enterprise.universal.i18n.LocalStringsImpl;
import com.sun.enterprise.util.OS;

import java.io.BufferedInputStream;
Expand Down Expand Up @@ -59,7 +58,6 @@ public final class FileUtils {
public static final File USER_HOME = new File(System.getProperty("user.home"));

private static final Logger LOG = System.getLogger(FileUtils.class.getName());
private static final LocalStringsImpl I18N = new LocalStringsImpl(FileUtils.class);

private static final char[] ILLEGAL_FILENAME_CHARS = {'/', '\\', ':', '*', '?', '"', '<', '>', '|'};
private static final char REPLACEMENT_CHAR = '_';
Expand Down

0 comments on commit 6595491

Please sign in to comment.