From 7379a89268186a44d64775110794706ae75c935b Mon Sep 17 00:00:00 2001 From: David Solin Date: Tue, 23 Aug 2016 19:18:51 -0500 Subject: [PATCH] Inadvertently added this class to a PR where it's not in-scope. --- .../schmizz/sshj/common/LoggerFactory.java | 38 ------------------- 1 file changed, 38 deletions(-) delete mode 100644 src/main/java/net/schmizz/sshj/common/LoggerFactory.java diff --git a/src/main/java/net/schmizz/sshj/common/LoggerFactory.java b/src/main/java/net/schmizz/sshj/common/LoggerFactory.java deleted file mode 100644 index 53660840..00000000 --- a/src/main/java/net/schmizz/sshj/common/LoggerFactory.java +++ /dev/null @@ -1,38 +0,0 @@ -/* - * Copyright (C)2016 - SSHJ Contributors - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package net.schmizz.sshj.common; - -import org.slf4j.Logger; - -public interface LoggerFactory { - Logger getLogger(String name); - Logger getLogger(Class clazz); - - /** - * Default SLF4J-based implementation of the SSHJ LoggerFactory. - */ - LoggerFactory DEFAULT = new LoggerFactory() { - @Override - public Logger getLogger(String name) { - return org.slf4j.LoggerFactory.getLogger(name); - } - - @Override - public Logger getLogger(Class clazz) { - return org.slf4j.LoggerFactory.getLogger(clazz); - } - }; -}