All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.spun.util.logger.NullLogger Maven / Gradle / Ivy

There is a newer version: 24.9.0
Show newest version
package com.spun.util.logger;

public class NullLogger implements Appendable
{
  @Override
  public Appendable append(CharSequence csq)
  {
    return this;
  }
  @Override
  public Appendable append(CharSequence csq, int start, int end)
  {
    return this;
  }
  @Override
  public Appendable append(char c)
  {
    return this;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy