Guest User

Untitled

a guest
May 25th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. // Adding a null check, the Java way
  2. if (user != null) {
  3. println "Java FirstName = ${user.firstName}"
  4. }
  5.  
  6. // Null check the Groovy way
  7. println "Groovy FirstName = ${user?.firstName}"
Add Comment
Please, Sign In to add comment