Skip to content

Commit

Permalink
compilation test for Supplier based converter maps
Browse files Browse the repository at this point in the history
Signed-off-by: Ceki Gulcu <ceki@qos.ch>
  • Loading branch information
ceki committed Oct 28, 2024
1 parent ae464f0 commit e845da2
Showing 1 changed file with 31 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
/*
* Logback: the reliable, generic, fast and flexible logging framework.
* Copyright (C) 1999-2024, QOS.ch. All rights reserved.
*
* This program and the accompanying materials are dual-licensed under
* either the terms of the Eclipse Public License v1.0 as published by
* the Eclipse Foundation
*
* or (per the licensee's choosing)
*
* under the terms of the GNU Lesser General Public License version 2.1
* as published by the Free Software Foundation.
*/

package ch.qos.logback.classic.pattern;

import ch.qos.logback.classic.PatternLayout;

import java.util.Map;

/**
* Test backward compatibility support by virtue of correct compilation.
*/
public class SubPatternLayout extends PatternLayout {

SubPatternLayout() {
Map<String, String> defaultConverterMap = getDefaultConverterMap();
defaultConverterMap.put("dooo", DateConverter.class.getName());
}

}

0 comments on commit e845da2

Please sign in to comment.