Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 422354c9 authored by Neil Fuller's avatar Neil Fuller
Browse files

Non-functional tidy-ups

Changes to source for non-functional reasons, i.e. unnecessary code, doc
improvements.

Bug: None - just docs/java cleanups
Test: build only
Change-Id: Id6c71f4e6dbee750cf22138dca28e861b5aaad47
parent 0f2b48d1
Loading
Loading
Loading
Loading
+9 −10
Original line number Original line Diff line number Diff line
@@ -39,8 +39,7 @@ import java.util.Objects;
 */
 */
public final class TimeCapabilities implements Parcelable {
public final class TimeCapabilities implements Parcelable {


    public static final @NonNull Creator<TimeCapabilities> CREATOR =
    public static final @NonNull Creator<TimeCapabilities> CREATOR = new Creator<>() {
            new Creator<TimeCapabilities>() {
        public TimeCapabilities createFromParcel(Parcel in) {
        public TimeCapabilities createFromParcel(Parcel in) {
            return TimeCapabilities.createFromParcel(in);
            return TimeCapabilities.createFromParcel(in);
        }
        }
+6 −1
Original line number Original line Diff line number Diff line
@@ -24,7 +24,12 @@ import android.os.SystemClock;
import android.os.TimestampedValue;
import android.os.TimestampedValue;


/**
/**
 * The interface through which system components can send signals to the TimeDetectorService.
 * The interface through which system components can query and send signals to the
 * TimeDetectorService.
 *
 * <p>SDK APIs are exposed on {@link android.app.time.TimeManager} to obscure the internal split
 * between time and time zone detection services. Migrate APIs there if they need to be part of an
 * SDK API.
 *
 *
 * @hide
 * @hide
 */
 */
+6 −1
Original line number Original line Diff line number Diff line
@@ -22,7 +22,12 @@ import android.annotation.SystemService;
import android.content.Context;
import android.content.Context;


/**
/**
 * The interface through which system components can send signals to the TimeZoneDetectorService.
 * The interface through which system components can query and send signals to the
 * TimeZoneDetectorService.
 *
 * <p>SDK APIs are exposed on {@link android.app.time.TimeManager} to obscure the internal split
 * between time and time zone detection services. Migrate APIs there if they need to be part of an
 * SDK API.
 *
 *
 * @hide
 * @hide
 */
 */