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

aQute.bnd.build.model.conversions.DefaultFormatter Maven / Gradle / Ivy

The newest version!
package aQute.bnd.build.model.conversions;

public class DefaultFormatter implements Converter {

	@Override
	public String convert(Object input) throws IllegalArgumentException {
		return input == null ? null : input.toString();
	}

	@Override
	public String error(String msg) {
		return msg;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy