Skip to content

Commit

Permalink
LPD-24555 portal-kernel: Deprecate type methods
Browse files Browse the repository at this point in the history
  • Loading branch information
gustavolimav authored and brianchandotcom committed May 20, 2024
1 parent cf593f4 commit 083cf77
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,10 @@ public Float getTermBoost() {
return _termBoost;
}

/**
* @deprecated As of Cavanaugh (7.4.x), with no direct replacement
*/
@Deprecated
public String getType() {
return _type;
}
Expand Down Expand Up @@ -182,6 +186,10 @@ public void setTermBoost(Float termBoost) {
_termBoost = termBoost;
}

/**
* @deprecated As of Cavanaugh (7.4.x), with no direct replacement
*/
@Deprecated
public void setType(String type) {
_type = type;
}
Expand Down

0 comments on commit 083cf77

Please sign in to comment.