From 88ef1e8ca9ca67ec09f1343baac9d48aec589f79 Mon Sep 17 00:00:00 2001 From: Oleksandr Vayda Date: Mon, 7 Sep 2020 20:31:43 +0200 Subject: [PATCH] spline #761 Remove redundant extension class --- .../ArangoDatabaseAsyncImplImplicits.scala | 29 ------------------- 1 file changed, 29 deletions(-) delete mode 100644 persistence/src/main/scala/com/arangodb/async/internal/ArangoDatabaseAsyncImplImplicits.scala diff --git a/persistence/src/main/scala/com/arangodb/async/internal/ArangoDatabaseAsyncImplImplicits.scala b/persistence/src/main/scala/com/arangodb/async/internal/ArangoDatabaseAsyncImplImplicits.scala deleted file mode 100644 index 8abcd7b60..000000000 --- a/persistence/src/main/scala/com/arangodb/async/internal/ArangoDatabaseAsyncImplImplicits.scala +++ /dev/null @@ -1,29 +0,0 @@ -/* - * Copyright 2020 ABSA Group Limited - * - * 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 com.arangodb.async.internal - -import java.net.URI -import java.util.Collections - -object ArangoDatabaseAsyncImplImplicits { - - implicit class ArangoDatabaseAsyncImplOps(val dbImpl: ArangoDatabaseAsyncImpl) extends AnyVal { - def route(path: URI): ArangoRouteAsyncImpl = - new ArangoRouteAsyncImpl(dbImpl, path.toString, Collections.emptyMap[String, String]) - } - -}