Skip to content

Instantly share code, notes, and snippets.

@kepocnhh
Created October 18, 2017 10:31
Show Gist options
  • Save kepocnhh/9e7240723844c993dbb93c96257fcba0 to your computer and use it in GitHub Desktop.
Save kepocnhh/9e7240723844c993dbb93c96257fcba0 to your computer and use it in GitHub Desktop.
public class UglyClass
{
private int number;
public UglyClass(int number)
{
this.number = number;
}
public int getNumber()
{
return number;
}
public void setNumber(int number)
{
this.number = number;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment