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

aQute.lib.io.NullAppendable Maven / Gradle / Ivy

The newest version!
package aQute.lib.io;
public class NullAppendable 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