returnLogEntry method
Returns a LogEntry to the pool
Implementation
void returnLogEntry(LogEntry entry) {
if (_logEntryPool.length < _maxPoolSize) {
_logEntryPool.add(entry);
}
}
Returns a LogEntry to the pool
void returnLogEntry(LogEntry entry) {
if (_logEntryPool.length < _maxPoolSize) {
_logEntryPool.add(entry);
}
}