diff --git a/L2J_Mobius_C6_Interlude/java/org/l2jmobius/log/formatter/AbstractFormatter.java b/L2J_Mobius_C6_Interlude/java/org/l2jmobius/log/formatter/AbstractFormatter.java deleted file mode 100644 index ace852db2b..0000000000 --- a/L2J_Mobius_C6_Interlude/java/org/l2jmobius/log/formatter/AbstractFormatter.java +++ /dev/null @@ -1,42 +0,0 @@ -/* - * This file is part of the L2J Mobius project. - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -package org.l2jmobius.log.formatter; - -import java.text.DateFormat; -import java.text.SimpleDateFormat; -import java.util.Date; -import java.util.logging.Formatter; -import java.util.logging.LogRecord; - -/** - * @author Nos - */ -public abstract class AbstractFormatter extends Formatter -{ - private final DateFormat _dateFormat = new SimpleDateFormat("dd/MM HH:mm:ss"); - - @Override - public String format(LogRecord record) - { - final StringBuilder sb = new StringBuilder(32); - sb.append("["); - sb.append(_dateFormat.format(new Date(record.getMillis()))); - sb.append("] "); - sb.append(record.getMessage()); - return sb.toString(); - } -}