* @param pDev
*/
final void removePointer(Device pDev) {
if (pointerDevs.remove(pDev)) {
try {
final PointerAPI pApi = pDev.getAPI(PointerAPI.class);
pApi.removePointerListener(this);
} catch (ApiNotFoundException ex) {
BootLogInstance.get().error("PointerAPI not found", ex);
}
}
}