Skip to content

Instantly share code, notes, and snippets.

@wmbest2
Created December 17, 2010 06:02
Show Gist options
  • Save wmbest2/744547 to your computer and use it in GitHub Desktop.
Save wmbest2/744547 to your computer and use it in GitHub Desktop.
ArrayList<Listing> shows = new ArrayList<Listing>();
String channelId = listings.get(0).getChannelId();
for( Listing listing : listings ) {
if(!channelId.equals(listing.getChannelId())) {
mBlock.add(shows);
shows = new ArrayList<Listing>();
}
shows.add(listing);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment