Skip to content

Commit

Permalink
package-protect 2 setters
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Sep 8, 2024
1 parent 1b1f204 commit ba05d0e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ public void setNumVelocityStepsOverride(int setting) {
*
* @param constraintSubType the desired value (not null, default=0)
*/
protected void setSubType(EConstraintSubType constraintSubType) {
void setSubType(EConstraintSubType constraintSubType) {
long settingsVa = va();
long ordinal = constraintSubType.ordinal();
setUserData(settingsVa, ordinal);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ static ShapeSettings newShapeSettings(long settingsVa) {
*
* @param shapeSubType the desired value (not null)
*/
protected void setSubType(EShapeSubType shapeSubType) {
void setSubType(EShapeSubType shapeSubType) {
long settingsVa = va();
long ordinal = shapeSubType.ordinal();
setUserData(settingsVa, ordinal);
Expand Down

0 comments on commit ba05d0e

Please sign in to comment.