Last active
June 7, 2019 05:40
-
-
Save srfrnk/e6c6318a53616627a114f6b9c77ce27b to your computer and use it in GitHub Desktop.
Spotify
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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