From 0461707694b0efa62c83ee28a050a719ce98e0ae Mon Sep 17 00:00:00 2001 From: Armin Date: Thu, 14 Mar 2024 12:04:30 +0100 Subject: [PATCH] Fix javadoc errors --- .../java/de/cyface/datacapturing/EventHandlingStrategy.java | 2 +- .../src/main/java/de/cyface/datacapturing/package-info.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/datacapturing/src/main/java/de/cyface/datacapturing/EventHandlingStrategy.java b/datacapturing/src/main/java/de/cyface/datacapturing/EventHandlingStrategy.java index 6e4c259f9..01d6587bf 100644 --- a/datacapturing/src/main/java/de/cyface/datacapturing/EventHandlingStrategy.java +++ b/datacapturing/src/main/java/de/cyface/datacapturing/EventHandlingStrategy.java @@ -54,7 +54,7 @@ public interface EventHandlingStrategy extends Parcelable { * Attention: * If you want to use a **vector xml drawable as Notification icon** make sure to do the following: * Even with `vectorDrawables.useSupportLibrary` enabled the vector drawable won't work as a notification icon - * (`notificationBuilder.setSmallIcon()`) on devices with API < 21. + * (`notificationBuilder.setSmallIcon()`) on devices with API < 21. * We assume that's because of the way we need to inject your custom notification. * A simple fix is to have a the xml in `res/drawable-anydpi-v21/icon.xml` and to generate notification icon PNGs * under the same resource name in the usual paths (`res/drawable-**dpi/icon.png`). diff --git a/datacapturing/src/main/java/de/cyface/datacapturing/package-info.java b/datacapturing/src/main/java/de/cyface/datacapturing/package-info.java index fbcec9e33..efdf8e6d6 100644 --- a/datacapturing/src/main/java/de/cyface/datacapturing/package-info.java +++ b/datacapturing/src/main/java/de/cyface/datacapturing/package-info.java @@ -3,7 +3,7 @@ * This package contains a dummy interface for a service used to capture sensor data from a Google Android device. The * service can be started and stopped. It caches intermediate results to the SD card and it submits finished * measurements to a server for further processing. This dummy component of course does nothing but provide the - * necessary interface. The main entry class is {@link de.cyface.dummy.DataCapturingService}. + * necessary interface. The main entry class is {@link de.cyface.datacapturing.DataCapturingService}. *

* * @author Klemens Muthmann