Skip to content

Commit

Permalink
#5383 remove comment
Browse files Browse the repository at this point in the history
  • Loading branch information
pnatashap committed Apr 2, 2024
1 parent f621517 commit 1b2d9ab
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ public double getRating() {
return Double.parseDouble(core().getText());
}

// @todo #1 Check if 1.0 is really the minimum, as typically 0 is minimum
@JDIAction("Setup rating value to {0} with the max value as {1} (Value should not greater then max and not less then 1.0)")
public void setRatingByClick(double value, double fullStars) {
if (value > fullStars || value < 1.0) {
Expand All @@ -37,7 +36,6 @@ public void setRating(double value) {
core().setValue(String.valueOf(value));
}


public RatingBarAssert is() {
return new RatingBarAssert().set(this);
}
Expand Down

0 comments on commit 1b2d9ab

Please sign in to comment.