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

com.firefly.template.parser.StatementEnd Maven / Gradle / Ivy

There is a newer version: 4.0.20
Show newest version
package com.firefly.template.parser;

public class StatementEnd implements Statement {

	@Override
	public void parse(String content, JavaFileBuilder javaFileBuilder) {
		javaFileBuilder.write(javaFileBuilder.getPreBlank().deleteCharAt(0).toString() + "}\n");
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy