Skip to content

Instantly share code, notes, and snippets.

@sebastianmonte
Created February 12, 2015 10:06
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 sebastianmonte/f6f79b64c02a9344d561 to your computer and use it in GitHub Desktop.
Save sebastianmonte/f6f79b64c02a9344d561 to your computer and use it in GitHub Desktop.
Number Helper Class
package fi.gofore.blogs.testmutations;
public class NumberHelper {
public static boolean isNonnegative(int number) {
return number >= 0;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment