Advertisement
Guest User

ScaryRankBugs

a guest
Oct 14th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.55 KB | None | 0 0
  1. public class ScaryRankBugs
  2. {
  3.    
  4.  
  5.     private String checkStrValue = null;
  6.  
  7.  
  8.     public ScaryRankBugs() {
  9.         this.checkStrValue = "SomeValue";
  10.     }
  11.  
  12.  
  13.     private void executeConditions() {
  14.         if ("SomeValue".equalsIgnoreCase(this.checkStrValue)) {
  15.  
  16.         } else if ("SomeValue".equals(this.checkStrValue)) {
  17.  
  18.         }
  19.     }
  20.  
  21.  
  22.     private static void checkCondition() {
  23.         boolean value = false;
  24.         if (value = true) {
  25.         } else {
  26.         }
  27.     }
  28.  
  29.  
  30.     public static void main(String[] args) {
  31.         ScaryRankBugs instance = new ScaryRankBugs();
  32.         instance.executeConditions();
  33.     }
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement