Changeset 4459
- Timestamp:
- Mar 20, 2013, 2:49:34 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/client/servlet/src/org/proteios/action/sample/AddSample.java
r3791 r4459 43 43 import se.lu.thep.waf.constraints.InvalidParameterValue; 44 44 45 import java.util.HashSet; 45 46 import java.util.Set; 46 import java.util.TreeSet;47 47 48 48 /** … … 86 86 if (activeP != null) 87 87 { 88 Set<SharedItem> sampleSet = new TreeSet<SharedItem>();88 Set<SharedItem> sampleSet = new HashSet<SharedItem>(); 89 89 sampleSet.add(sample); 90 90 ShareableUtil.shareTo(activeP, sampleSet, Permission.READ,
Note: See TracChangeset
for help on using the changeset viewer.