From 46543e8ebb26cdbf8559151abd3eaee10074bc08 Mon Sep 17 00:00:00 2001 From: Robinson Date: Mon, 3 May 2021 02:16:02 +0200 Subject: [PATCH] Added package-info.java --- .../objectPool/blocking/package-info.java | 17 +++++++++++++++++ .../objectPool/nonBlocking/package-info.java | 17 +++++++++++++++++ src/dorkbox/objectPool/package-info.java | 17 +++++++++++++++++ .../objectPool/suspending/package-info.java | 17 +++++++++++++++++ 4 files changed, 68 insertions(+) create mode 100644 src/dorkbox/objectPool/blocking/package-info.java create mode 100644 src/dorkbox/objectPool/nonBlocking/package-info.java create mode 100644 src/dorkbox/objectPool/package-info.java create mode 100644 src/dorkbox/objectPool/suspending/package-info.java diff --git a/src/dorkbox/objectPool/blocking/package-info.java b/src/dorkbox/objectPool/blocking/package-info.java new file mode 100644 index 0000000..053c1a7 --- /dev/null +++ b/src/dorkbox/objectPool/blocking/package-info.java @@ -0,0 +1,17 @@ +/* + * Copyright 2021 dorkbox, llc + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package dorkbox.objectPool.blocking; diff --git a/src/dorkbox/objectPool/nonBlocking/package-info.java b/src/dorkbox/objectPool/nonBlocking/package-info.java new file mode 100644 index 0000000..589f5c9 --- /dev/null +++ b/src/dorkbox/objectPool/nonBlocking/package-info.java @@ -0,0 +1,17 @@ +/* + * Copyright 2021 dorkbox, llc + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package dorkbox.objectPool.nonBlocking; diff --git a/src/dorkbox/objectPool/package-info.java b/src/dorkbox/objectPool/package-info.java new file mode 100644 index 0000000..51c1459 --- /dev/null +++ b/src/dorkbox/objectPool/package-info.java @@ -0,0 +1,17 @@ +/* + * Copyright 2021 dorkbox, llc + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package dorkbox.objectPool; diff --git a/src/dorkbox/objectPool/suspending/package-info.java b/src/dorkbox/objectPool/suspending/package-info.java new file mode 100644 index 0000000..4dbcfac --- /dev/null +++ b/src/dorkbox/objectPool/suspending/package-info.java @@ -0,0 +1,17 @@ +/* + * Copyright 2021 dorkbox, llc + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package dorkbox.objectPool.suspending;