Skip to content

Commit

Permalink
Rename package to idb
Browse files Browse the repository at this point in the history
  • Loading branch information
aikar committed Mar 11, 2018
1 parent b397c4e commit bf79fcc
Show file tree
Hide file tree
Showing 15 changed files with 15 additions and 17 deletions.
2 changes: 0 additions & 2 deletions build.gradle
Expand Up @@ -61,8 +61,6 @@ subprojects {
}

task deploy() {
dependsOn build
dependsOn javadoc
dependsOn publish
}

Expand Down
@@ -1,5 +1,6 @@
package co.aikar.db;
package co.aikar.idb;

import co.aikar.db.*;
import lombok.NonNull;
import org.bukkit.event.EventHandler;
import org.bukkit.event.Listener;
Expand Down
Expand Up @@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package co.aikar.db;
package co.aikar.idb;

import java.io.PrintStream;
import java.io.PrintWriter;
Expand Down
@@ -1,4 +1,4 @@
package co.aikar.db;
package co.aikar.idb;

import java.util.concurrent.Callable;
import java.util.concurrent.CompletableFuture;
Expand Down
Expand Up @@ -21,7 +21,7 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

package co.aikar.db;
package co.aikar.idb;

import org.intellij.lang.annotations.Language;

Expand Down
@@ -1,4 +1,4 @@
package co.aikar.db;
package co.aikar.idb;

import org.intellij.lang.annotations.Language;

Expand Down
@@ -1,6 +1,5 @@
package co.aikar.db;
package co.aikar.idb;

import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NonNull;
Expand Down
@@ -1,4 +1,4 @@
package co.aikar.db;
package co.aikar.idb;



Expand Down
Expand Up @@ -21,7 +21,7 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

package co.aikar.db;
package co.aikar.idb;

import java.util.HashMap;

Expand Down
Expand Up @@ -21,7 +21,7 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

package co.aikar.db;
package co.aikar.idb;


import org.intellij.lang.annotations.Language;
Expand Down
@@ -1,4 +1,4 @@
package co.aikar.db;
package co.aikar.idb;

import com.zaxxer.hikari.HikariConfig;
import com.zaxxer.hikari.HikariDataSource;
Expand Down
@@ -1,4 +1,4 @@
package co.aikar.db;
package co.aikar.idb;

class NullDatabaseTiming implements DatabaseTiming {
@Override
Expand Down
@@ -1,4 +1,4 @@
package co.aikar.db;
package co.aikar.idb;

import lombok.Builder;
import lombok.NonNull;
Expand Down
@@ -1,4 +1,4 @@
package co.aikar.db;
package co.aikar.idb;

public interface TimingsProvider {

Expand Down
@@ -1,4 +1,4 @@
package co.aikar.db;
package co.aikar.idb;

import lombok.SneakyThrows;

Expand Down

0 comments on commit bf79fcc

Please sign in to comment.