Skip to content

Commit c795c43

Browse files
authored
Update DeviceAllocationManager.java
1 parent 663972f commit c795c43

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

src/main/java/com/appium/manager/DeviceAllocationManager.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,14 +46,11 @@ public List<AppiumDevice> getDevices() {
4646

4747
public synchronized AppiumDevice getNextAvailableDevice() {
4848
int i = 0;
49-
System.out.println("inside getNextAvailableDevice");
50-
5149
for (AppiumDevice device : allDevices) {
5250
Thread t = Thread.currentThread();
5351
t.setName("Thread_" + i);
5452
i++;
5553
boolean flag =device.isAvailable();
56-
System.out.println("isDevice available : "+flag);
5754
if (flag) {
5855
device.blockDevice();
5956
return device;

0 commit comments

Comments
 (0)