Changeset 1423 for DCWoRMS/branches/coolemall/src/schedframe/resources/devices/DeviceAirflowInterface.java
- Timestamp:
- 07/30/14 12:25:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
DCWoRMS/branches/coolemall/src/schedframe/resources/devices/DeviceAirflowInterface.java
r1415 r1423 1 1 package schedframe.resources.devices; 2 2 3 import java.util.ArrayList;4 3 import java.util.List; 5 4 … … 54 53 55 54 public List<AirflowState> getSupportedAirflowStates(){ 56 List<AirflowState> airflowStates = new ArrayList<AirflowState>(); 57 for(AirflowState airFlowState: airflowProfile.getAirflowStates()){ 58 airflowStates.add(airFlowState); 59 } 60 return airflowStates; 55 return airflowProfile.getAirflowStates(); 61 56 } 62 57
Note: See TracChangeset
for help on using the changeset viewer.