Refactored package, placed into .util

This commit is contained in:
nathan 2015-02-02 12:40:12 +01:00
parent 1f13487cf8
commit c52d241e17
7 changed files with 7 additions and 7 deletions

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package dorkbox.objectPool;
package dorkbox.util.objectPool;
import java.lang.reflect.Field;
import java.security.PrivilegedExceptionAction;

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package dorkbox.objectPool;
package dorkbox.util.objectPool;
public interface ObjectPool<T> {
/**

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package dorkbox.objectPool;
package dorkbox.util.objectPool;
public class ObjectPoolFactory {

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package dorkbox.objectPool;
package dorkbox.util.objectPool;
import java.util.concurrent.atomic.AtomicBoolean;

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package dorkbox.objectPool;
package dorkbox.util.objectPool;
public interface PoolableObject<T> {
/**

View File

@ -16,7 +16,7 @@
*
* Modified by dorkbox, llc
*/
package dorkbox.objectPool;
package dorkbox.util.objectPool;
import java.util.concurrent.LinkedBlockingDeque;

View File

@ -17,7 +17,7 @@
*
* Modified by dorkbox, llc
*/
package dorkbox.objectPool;
package dorkbox.util.objectPool;
import java.security.AccessController;
import java.util.concurrent.locks.ReentrantLock;