uncommit method

void uncommit()

Implementation

void uncommit() {
  if (isCommitted) {
    _injector.uncommit();
    isCommitted = false;
  }
}