Skip to content

Commit d5eefd7

Browse files
committed
Add JS Docs and remove @SInCE attribute on enums
1 parent 9bdb874 commit d5eefd7

3 files changed

Lines changed: 4 additions & 2 deletions

File tree

lib/js/src/manager/screen/menu/_MenuReplaceUtilities.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,10 @@ class _MenuReplaceUtilities {
132132
}
133133
});
134134

135+
/**
136+
* Checks whether this artwork has been seen before within this menu
137+
* @param {SdlArtwork[]} incomingArtwork - The artwork to check
138+
*/
135139
function artworkUniquenessCheck (incomingArtwork) {
136140
const isArtworkUnique = !uniqueArtworksToUpload.map((artwork = null) => {
137141
return artwork !== null && artwork.equals(incomingArtwork) && artwork.isTemplateImage() === incomingArtwork.isTemplateImage();

lib/js/src/manager/screen/menu/enums/DynamicMenuUpdatesMode.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ class DynamicMenuUpdatesMode extends Enum {
4242
* Constructor for DynamicMenuUpdatesMode.
4343
* Cell state that tells the menu manager what it should do with a given MenuCell
4444
* @class
45-
* @since SmartDeviceLink 5.1.0
4645
*/
4746
constructor () {
4847
super();

lib/js/src/manager/screen/menu/enums/_MenuCellState.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ class _MenuCellState extends Enum {
4141
/**
4242
* Constructor for _MenuCellState.
4343
* @class
44-
* @since SmartDeviceLink 5.1.0
4544
*/
4645
constructor () {
4746
super();

0 commit comments

Comments
 (0)