1   /**
2    * Logback: the generic, reliable, fast and flexible logging framework.
3    * 
4    * Copyright (C) 2000-2008, QOS.ch
5    * 
6    * This library is free software, you can redistribute it and/or modify it under
7    * the terms of the GNU Lesser General Public License as published by the Free
8    * Software Foundation.
9    */
10  
11  package org.slf4j.impl;
12  
13  /**
14   * This class grants public access to package protected methods of
15   * StaticLoggerBinder. Used for testing purposes.
16   * 
17   * @author Ceki Gulcu
18   * 
19   */
20  public class StaticLoggerBinderFriend {
21   
22    static public void reset() {
23      StaticLoggerBinder.reset();
24    }
25  
26  }