Committed by
Gerrit Code Review
Remove unused method
Change-Id: I19c79c00910522d1e25ba70d9ac03baa1becc7e8
Showing
1 changed file
with
0 additions
and
10 deletions
... | @@ -91,14 +91,4 @@ public class DeviceResourceManager implements DeviceResourceService { | ... | @@ -91,14 +91,4 @@ public class DeviceResourceManager implements DeviceResourceService { |
91 | public void releasePorts(IntentId intentId) { | 91 | public void releasePorts(IntentId intentId) { |
92 | store.releasePorts(intentId); | 92 | store.releasePorts(intentId); |
93 | } | 93 | } |
94 | - | ||
95 | - private Port getTypedPort(Set<Port> ports, Port.Type type) { | ||
96 | - for (Port port : ports) { | ||
97 | - if (port.type() == type) { | ||
98 | - return port; | ||
99 | - } | ||
100 | - } | ||
101 | - | ||
102 | - return null; | ||
103 | - } | ||
104 | } | 94 | } | ... | ... |
-
Please register or login to post a comment