Skip to content

Instantly share code, notes, and snippets.

@LordRaydenMK
Last active December 19, 2017 22:16
Show Gist options
  • Save LordRaydenMK/b8082dcf8a56b46613c20db3dd0ba4e1 to your computer and use it in GitHub Desktop.
Save LordRaydenMK/b8082dcf8a56b46613c20db3dd0ba4e1 to your computer and use it in GitHub Desktop.
class Document {
String html;
public Document(HtmlClient client, String url) {
html = client.get(url);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment