Advertisement
Guest User

Good thing they made it final

a guest
Feb 16th, 2015
2,146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.38 KB | None | 0 0
  1.     //This is all in a test
  2.  
  3.         final String nullString = null;
  4.    
  5.     // ...
  6.  
  7.         final Activity act = new Activity();
  8.    
  9.     // ...
  10.  
  11.         act2.setReading(nullString);
  12.         act2.setEditing(nullString);
  13.  
  14.     // ...
  15.  
  16.         final WorkItemState actual = EntityConversion.toWorkItemState(workitemId, comboList, nullString,
  17.                 null, nullString, comboListObject);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement