Created
January 23, 2020 20:12
-
-
Save jamiebullock/e92efb17b58af81b49bc6568b0de4a4e to your computer and use it in GitHub Desktop.
Not separate levels of abstraction
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public String render() throws Exception | |
{ | |
StringBuffer html = new StringBuffer("<hr"); | |
if (size > 0) | |
html.append(" size="").append(size + 1).append("\""); | |
html.append(">"); | |
return html.toString(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment