Remove deprecated free() calls (#1925)

Replaced with the standard close()
This commit is contained in:
Thad House
2019-10-08 21:30:33 -07:00
committed by Peter Johnson
parent 7f839b87ce
commit 0e3b0f3da7
9 changed files with 4 additions and 49 deletions

View File

@@ -105,10 +105,6 @@ public abstract class RobotBase implements AutoCloseable {
return m_threadId;
}
@Deprecated
public void free() {
}
@Override
public void close() {
}