Skip to content

Instantly share code, notes, and snippets.

@vandershraaf
Created January 9, 2013 04:26
Show Gist options
  • Save vandershraaf/4490574 to your computer and use it in GitHub Desktop.
Save vandershraaf/4490574 to your computer and use it in GitHub Desktop.
public class Library {
private static String libraryName;
private static List<String> books;
public boolean processBooks(){
for (String book: books){
if (book.equals(libraryName)){
return true;
}
}
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment