Skip to content

Instantly share code, notes, and snippets.

@egealpay
Created February 27, 2019 10:29
Show Gist options
  • Save egealpay/0a819ceb15fdd9465549fb64263be8bf to your computer and use it in GitHub Desktop.
Save egealpay/0a819ceb15fdd9465549fb64263be8bf to your computer and use it in GitHub Desktop.
private void measureLine(String line) {
lineCount++;
int lineSize = line.length();
totalChars += lineSize;
lineWidthHistogram.addLine(lineSize, lineCount);
recordWidestLine(lineSize);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment