Skip to content

Commit

Permalink
chore: renamed
Browse files Browse the repository at this point in the history
  • Loading branch information
RealBauHD committed Dec 11, 2023
1 parent e658829 commit 6251ac4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public interface AttributeValue {
* @param value the new base value
* @since 1.0.0
*/
void setBaseValue(double value);
void baseValue(double value);

/**
* Gets the base value.
Expand All @@ -31,7 +31,7 @@ public interface AttributeValue {
void removeModifier(@NotNull AttributeModifier modifier);

/**
* @return
* @return the calculated value
* @since 1.0.0
*/
double calculatedValue();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public Attribute attribute() {
}

@Override
public void setBaseValue(final double value) {
public void baseValue(final double value) {
this.baseValue = value;
this.consumer.accept(this);
}
Expand Down

0 comments on commit 6251ac4

Please sign in to comment.