Back to project page tpblogr.
The source code is released under:
MIT License
If you think the Android project tpblogr listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package blogr.vpm.fr.blogr.publish; /*from ww w .j a va 2 s .c om*/ /** * Created by vince on 24/10/14. * <p/> * The identity formatter does not apply any transformation to the content, it remains identical. */ public class IdentityFormatter implements Formatter { @Override public String format(String content) { return content; } }