Advertisement
Guest User

Untitled

a guest
Feb 15th, 2017
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. public class CleanCodeTest {
  2. private boolean isPremium;
  3.  
  4. private void doSth(){
  5. if (isPremium)
  6. doSomethingForPremium();
  7. else
  8. doSomethingNotForPremium();
  9. }
  10. public void doSomethingForPremium(){
  11. System.out.println("fajnie");
  12. }
  13. public void doSomethingNotForPremium(){
  14. System.out.println("niefajnie");
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement