Advertisement
Guest User

Untitled

a guest
Feb 13th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1.  
  2. package me.lordethan.cryton.utils;
  3.  
  4. public class BoolValue {
  5. private boolean value;
  6.  
  7. public BoolValue(boolean value) {
  8. this.value = value;
  9. }
  10.  
  11. public boolean getValue() {
  12. return this.value;
  13. }
  14.  
  15. public void setValue(boolean value) {
  16. this.value = value;
  17. }
  18. }
  19.  
  20. /*
  21. * Decompiled with CFR 0_110.
  22. */
  23. package me.lordethan.cryton.utils;
  24.  
  25. public class BoolValue {
  26. private boolean value;
  27.  
  28. public BoolValue(boolean value) {
  29. this.value = value;
  30. }
  31.  
  32. public boolean getValue() {
  33. return this.value;
  34. }
  35.  
  36. public void setValue(boolean value) {
  37. this.value = value;
  38. }
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement