Skip to content

Instantly share code, notes, and snippets.

@m0wfo
Last active June 26, 2016 16:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save m0wfo/4d783e7d88b691ef543dc71015e12407 to your computer and use it in GitHub Desktop.
Save m0wfo/4d783e7d88b691ef543dc71015e12407 to your computer and use it in GitHub Desktop.
public PoorStripperImpl implements IStripper {
@Override
public String stripThing(String originalString) {
return originalString == null ? "???" : originalString.substring(0, 8);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment