Changeset 200 for xssim/trunk
- Timestamp:
- 03/26/12 12:31:28 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
xssim/trunk/src/test/rewolucja/resources/manager/implementation/ClusterResourceManager.java
r104 r200 10 10 11 11 import test.rewolucja.resources.physical.base.ComputingResource; 12 import test.rewolucja.resources.physical.implementation. CPU;12 import test.rewolucja.resources.physical.implementation.Processor; 13 13 import test.rewolucja.resources.physical.implementation.ComputingNode; 14 14 … … 30 30 31 31 @SuppressWarnings("unchecked") 32 public List< CPU> getProcessors(){32 public List<Processor> getProcessors(){ 33 33 try { 34 return (List< CPU>) getResourcesOfType(ResourceType.CPU);34 return (List<Processor>) getResourcesOfType(ResourceType.CPU); 35 35 } catch (Exception e) { 36 return new ArrayList< CPU>();36 return new ArrayList<Processor>(); 37 37 } 38 38 }
Note: See TracChangeset
for help on using the changeset viewer.