safeAdd method

void safeAdd(
  1. X item
)

Implementation

void safeAdd(X item) {
  if (!this.isClosed) {
    this.add(item);
  }
}