Skip to content

Commit

Permalink
fix linter issues in SchemaData.java
Browse files Browse the repository at this point in the history
Signed-off-by: Jalander Ramagiri <[email protected]>
  • Loading branch information
Jalander Ramagiri committed Jul 15, 2024
1 parent c8ffb25 commit 6ce4bad
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -200,10 +200,18 @@ public void setContentObjects(List<ContentObject> contentObjects) {
this.contentObjects = contentObjects;
}

/**
*
* @return true if Custom event
*/
public boolean isCustomEvent() {
return isCustomEvent;
}

/**
*
* @param customEvent
*/
public void setCustomEvent(boolean customEvent) {
isCustomEvent = customEvent;
}
Expand Down

0 comments on commit 6ce4bad

Please sign in to comment.