Skip to content

Commit

Permalink
Drop useless JavaDoc elements
Browse files Browse the repository at this point in the history
  • Loading branch information
lukas-krecan committed Nov 15, 2024
1 parent 2761282 commit 1412c26
Showing 1 changed file with 0 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -372,9 +372,6 @@ public ConfigurableJsonAssert withConfiguration(

/**
* Sets numerical comparison tolerance.
*
* @param tolerance
* @return
*/
@NotNull
public ConfigurableJsonAssert withTolerance(@Nullable BigDecimal tolerance) {
Expand All @@ -383,9 +380,6 @@ public ConfigurableJsonAssert withTolerance(@Nullable BigDecimal tolerance) {

/**
* Sets numerical comparison tolerance.
*
* @param tolerance
* @return
*/
@NotNull
public ConfigurableJsonAssert withTolerance(double tolerance) {
Expand All @@ -395,9 +389,6 @@ public ConfigurableJsonAssert withTolerance(double tolerance) {
/**
* Makes JsonUnit ignore the specified paths in the actual value. If the path matches,
* it's completely ignored. It may be missing, null or have any value
*
* @param pathsToBeIgnored
* @return
*/
@NotNull
public ConfigurableJsonAssert whenIgnoringPaths(@NotNull String... pathsToBeIgnored) {
Expand All @@ -406,9 +397,6 @@ public ConfigurableJsonAssert whenIgnoringPaths(@NotNull String... pathsToBeIgno

/**
* Sets ignore placeholder.
*
* @param ignorePlaceholder
* @return
*/
@NotNull
public ConfigurableJsonAssert withIgnorePlaceholder(@NotNull String ignorePlaceholder) {
Expand All @@ -417,10 +405,6 @@ public ConfigurableJsonAssert withIgnorePlaceholder(@NotNull String ignorePlaceh

/**
* Adds a matcher to be used in ${json-unit.matches:matcherName} macro.
*
* @param matcherName
* @param matcher
* @return
*/
@NotNull
public ConfigurableJsonAssert withMatcher(@NotNull String matcherName, @NotNull Matcher<?> matcher) {
Expand Down

0 comments on commit 1412c26

Please sign in to comment.