Set the committed flag. @param v The committed flag value
(boolean v)
| 300 | * @param v The committed flag value |
| 301 | */ |
| 302 | public void setCommitted(boolean v) { |
| 303 | if (v && !this.committed) { |
| 304 | this.commitTimeNanos = System.nanoTime(); |
| 305 | } |
| 306 | this.committed = v; |
| 307 | } |
| 308 | |
| 309 | /** |
| 310 | * Return the time the response was committed (based on System.currentTimeMillis). |
no outgoing calls
no test coverage detected