diff --git a/.github/workflows/gradle_build.yml b/.github/workflows/gradle_build.yml index 1cf8004f1..c55493522 100644 --- a/.github/workflows/gradle_build.yml +++ b/.github/workflows/gradle_build.yml @@ -1,8 +1,6 @@ # This workflow ensures the building step works # # @author Armin Schnabel -# @version 1.0.3 -# @since 5.0.0 name: Gradle Build on: diff --git a/.github/workflows/gradle_connected-tests.yml b/.github/workflows/gradle_connected-tests.yml index a4bd48cc4..f1f14592b 100644 --- a/.github/workflows/gradle_connected-tests.yml +++ b/.github/workflows/gradle_connected-tests.yml @@ -1,8 +1,6 @@ # This workflow ensures the connected tests keep working # # @author Armin Schnabel -# @version 1.0.0 -# @since 7.4.0 name: Gradle Connected Tests on: diff --git a/.github/workflows/gradle_publish.yml b/.github/workflows/gradle_publish.yml index b9a3e8139..9d75b36ba 100644 --- a/.github/workflows/gradle_publish.yml +++ b/.github/workflows/gradle_publish.yml @@ -1,8 +1,6 @@ # This workflow publishes a new version to the Github Registry. # # @author Armin Schnabel -# @version 1.1.0 -# @since 5.0.0 name: Gradle Publish on: diff --git a/build.gradle b/build.gradle index b2b8de187..14bb2afb3 100644 --- a/build.gradle +++ b/build.gradle @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Cyface GmbH + * Copyright 2017-2024 Cyface GmbH * * This file is part of the Cyface SDK for Android. * @@ -21,8 +21,6 @@ * * @author Armin Schnabel * @author Klemens Muthmann - * @version 2.11.0 - * @since 1.0.0 */ buildscript { diff --git a/testutils/build.gradle b/testutils/build.gradle index 5eaf66bf8..4938877ec 100644 --- a/testutils/build.gradle +++ b/testutils/build.gradle @@ -1,5 +1,5 @@ /* - * Copyright 2019-2023 Cyface GmbH + * Copyright 2019-2024 Cyface GmbH * * This file is part of the Cyface SDK for Android. * @@ -20,8 +20,6 @@ * Gradle's build file for the module which contains cross cutting code used by all other modules. * * @author Armin Schnabel - * @version 1.3.0 - * @since 3.0.0 */ plugins { id 'com.android.library' diff --git a/testutils/src/main/kotlin/de/cyface/testutils/SharedTestUtils.kt b/testutils/src/main/kotlin/de/cyface/testutils/SharedTestUtils.kt index 577cb6615..af557d3f4 100644 --- a/testutils/src/main/kotlin/de/cyface/testutils/SharedTestUtils.kt +++ b/testutils/src/main/kotlin/de/cyface/testutils/SharedTestUtils.kt @@ -1,5 +1,5 @@ /* - * Copyright 2018-2023 Cyface GmbH + * Copyright 2018-2024 Cyface GmbH * * This file is part of the Cyface SDK for Android. * @@ -27,7 +27,6 @@ import android.util.Log import com.google.protobuf.ByteString import com.google.protobuf.InvalidProtocolBufferException import de.cyface.model.Point3DImpl -import de.cyface.model.RequestMetaData import de.cyface.persistence.Constants import de.cyface.persistence.Database import de.cyface.persistence.DefaultPersistenceLayer @@ -64,8 +63,6 @@ import java.util.UUID * It's located in the main folder to be compiled and imported as dependency in the testImplementations. * * @author Armin Schnabel - * @version 9.0.0 - * @since 3.0.0 */ object SharedTestUtils { /** @@ -159,15 +156,6 @@ object SharedTestUtils { ) } - @JvmStatic - fun generateRequestMetaDataGeoLocation( - distanceFromBase: Int, - timestamp: Long - ): RequestMetaData.GeoLocation { - val location = generateGeoLocation(distanceFromBase, timestamp) - return RequestMetaData.GeoLocation(location.timestamp, location.lat, location.lon) - } - /** * Inserts a test [de.cyface.persistence.model.ParcelablePoint3D] into the database content provider accessed by the test. *