diff --git a/sdk/src/java/lineageos/app/Profile.java b/sdk/src/java/lineageos/app/Profile.java
index 6553336a..9b02b8d8 100755
--- a/sdk/src/java/lineageos/app/Profile.java
+++ b/sdk/src/java/lineageos/app/Profile.java
@@ -1308,7 +1308,7 @@ public final class Profile implements Parcelable, Comparable {
/**
* Get the {@link StreamSettings} for the {@link Profile}
- * @return {@link Collection}
+ * @return {@link java.util.Collection}
*/
public Collection getStreamSettings(){
return streams.values();
@@ -1354,7 +1354,7 @@ public final class Profile implements Parcelable, Comparable {
/**
* Get the {@link ConnectionSettings} for the {@link Profile}
- * @return {@link Collection}
+ * @return {@link java.util.Collection}
*/
public Collection getConnectionSettings(){
List combinedList = new ArrayList<>();
diff --git a/sdk/src/java/lineageos/app/ProfileManager.java b/sdk/src/java/lineageos/app/ProfileManager.java
index 8d69d0b4..27f30301 100644
--- a/sdk/src/java/lineageos/app/ProfileManager.java
+++ b/sdk/src/java/lineageos/app/ProfileManager.java
@@ -36,7 +36,7 @@ import lineageos.providers.LineageSettings;
/**
*
- * The ProfileManager allows you to create {@link Profile}s and {@link ProfileGroup}s to create
+ * The ProfileManager allows you to create {@link Profile}s and ProfileGroups to create
* specific behavior states depending on triggers from hardware devices changing states, such as:
*
*
@@ -58,7 +58,6 @@ import lineageos.providers.LineageSettings;
* This manager requires the MODIFY_PROFILES permission.
*
* @see lineageos.app.Profile
- * @see lineageos.app.ProfileGroup
*/
public class ProfileManager {
diff --git a/sdk/src/java/lineageos/os/Build.java b/sdk/src/java/lineageos/os/Build.java
index 67e1b56b..6ee6f7c5 100644
--- a/sdk/src/java/lineageos/os/Build.java
+++ b/sdk/src/java/lineageos/os/Build.java
@@ -95,13 +95,9 @@ public class Build {
* new features:
*
* - Profiles API via {@link lineageos.app.ProfileManager}
- *
- New Expanded Styles for Custom Tiles via
- * {@link lineageos.app.CustomTile.RemoteExpandedStyle}
*
- Hardware Abstraction Framework Access via
* {@link lineageos.hardware.LineageHardwareManager} (Not for use by 3rd parties)
- *
- MSIM API via {@link lineageos.app.LineageTelephonyManager}
*
- Introductory Settings Provider {@link lineageos.providers.LineageSettings}
- *
- AlarmClock API via {@link lineageos.alarmclock.LineageOSAlarmClock}
*
*/
public static final int BOYSENBERRY = 2;
@@ -118,8 +114,6 @@ public class Build {
* Applications targeting this or a later version will get access to these
* new features:
*
- * - External views api, and specifically Keyguard interfaces for making
- * live lockscreens via {@link lineageos.externalviews.KeyguardExternalView}
* - Inclusion of the PerformanceManager interfaces, allowing an application to specify
* the type of mode to have the device be placed in via
* {@link lineageos.power.PerformanceManager}
@@ -139,13 +133,6 @@ public class Build {
* {@link lineageos.weather.LineageWeatherManager}
* - Weather provider api to provide weather data to any listener on the device
* {@link lineageos.weatherservice.WeatherProviderService}
- * - Extended capabilities of the {@link lineageos.externalviews.KeyguardExternalView}
- * interfaces to provide immersive and interactive experiences on the lockscreen.
- * - Themes interfaces have found a new home in the lineage sdk, thus we allow access
- * to 3rd parties requesting theme changes on the platform via
- * {@link lineageos.themes.ThemeManager} and
- * {@link lineageos.themes.ThemeChangeRequest}
- * - Full access to the {@link lineageos.providers.ThemesContract} and provider
* - Parceling helper class {@link lineageos.os.Concierge} to help with parcel
* headers and protocol revisions
*
@@ -172,17 +159,13 @@ public class Build {
public static final int FIG = 6;
/**
- * Unreleased preliminary version starting from CM14
+ * January 2017: Unreleased preliminary version starting from CM14
*/
public static final int GUAVA = 7;
/**
- * Unreleased preliminary version starting from LineageOS 15.1
- * Applications targeting this or a later version will get access to these
- * new features!
- *
- * - Change system colors via {@link lineageos.app.StyleInterface}
- *
+ * February 2018: Unreleased preliminary version starting from LineageOS 15.1
+ * Unused APIs have been removed.
*/
public static final int HACKBERRY = 8;
}