Skip to content

Instantly share code, notes, and snippets.

@srfrnk
Last active June 7, 2019 05:40
Show Gist options
  • Save srfrnk/e6c6318a53616627a114f6b9c77ce27b to your computer and use it in GitHub Desktop.
Save srfrnk/e6c6318a53616627a114f6b9c77ce27b to your computer and use it in GitHub Desktop.
Spotify
package com.spotify.client;
public class ClientAds {
public boolean showAd(User user,AdDetails ad)
{
if(user.fullname.equals("ShaharFrank") && ad.style==Styles.OmerAdam)
{
return false;
}
return true;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment