Skip to content

Commit ebec311

Browse files
Merge branch 'release-v1.4.x'
2 parents 4ca6676 + 16c513f commit ebec311

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ spotless {
7777
kotlin {
7878
target("**/src/**/*.kt")
7979

80-
ktfmt("0.60").metaStyle()
80+
ktfmt("0.62").metaStyle()
8181
endWithNewline()
8282
lineEndings = LineEnding.UNIX
8383
}

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-9.5.0-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.5.1-bin.zip
44
networkTimeout=10000
55
retries=0
66
retryBackOffMs=500

src/main/java/io/github/problem4j/core/ProblemMapper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ default ProblemBuilder toProblemBuilder(@Nullable Throwable t) {
8080
/**
8181
* Checks whether the given exception class is annotated with {@link ProblemMapping}.
8282
*
83-
* @param t {@link Throwable} to check (can be {@code null})
83+
* @param t {@link Throwable} to check (may be {@code null})
8484
* @return {@code true} if the exception is annotated with {@link ProblemMapping}, {@code false}
8585
* otherwise
8686
* @since 1.3.0

src/main/java/io/github/problem4j/core/ProblemMapping.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@
107107
* <li>{@code {fieldName}} -&gt; value of any field in the exception class hierarchy
108108
* </ul>
109109
*
110-
* <p>If empty, a default type (e.g., {@code about:blank}) may be applied by the processor. Null
110+
* <p>If empty, a default type (e.g., {@code about:blank}) can be applied by the processor. Null
111111
* or empty placeholders are ignored.
112112
*
113113
* @return interpolated type URI for the problem

0 commit comments

Comments
 (0)