#190 Regenerate puml files

This commit is contained in:
Ilkka Seppälä
2017-02-11 21:46:56 +02:00
parent 9ec0935a1c
commit a1ff55b462
24 changed files with 195 additions and 48 deletions

View File

@ -6,8 +6,8 @@ package com.iluwatar.object.pool {
+ main(args : String[]) {static}
}
abstract class ObjectPool<T> {
- available : HashSet<T>
- inUse : HashSet<T>
- available : Set<T>
- inUse : Set<T>
+ ObjectPool<T>()
+ checkIn(instance : T)
+ checkOut() : T