Skip to content

Commit 0a26d43

Browse files
committed
javadoc fixes & setting version number to 1.10.0
1 parent fcc2734 commit 0a26d43

File tree

9 files changed

+6
-12
lines changed

9 files changed

+6
-12
lines changed

core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<modelVersion>4.0.0</modelVersion>
2222
<groupId>org.everit.json</groupId>
2323
<artifactId>org.everit.json.schema</artifactId>
24-
<version>1.10.0-SNAPSHOT</version>
24+
<version>1.10.0</version>
2525
<packaging>bundle</packaging>
2626
<properties>
2727
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

core/src/main/java/org/everit/json/schema/FormatValidator.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ public interface FormatValidator {
2626
/**
2727
* Static factory method for {@code FormatValidator} implementations supporting the
2828
* {@code formatName}s mandated by the json schema spec.
29-
* <p>
3029
* <ul>
3130
* <li>date-time</li>
3231
* <li>email</li>
@@ -78,7 +77,7 @@ static FormatValidator forFormat(final String formatName) {
7877
* <p>
7978
* Unless specified otherwise the {@link org.everit.json.schema.loader.SchemaLoader} will use this
8079
* name to recognize string schemas using this format.
81-
* <p>
80+
* </p>
8281
* The default implementation of this method returns {@code "unnamed-format"}. It is strongly
8382
* recommended for implementations to give a more meaningful name by overriding this method.
8483
*

core/src/main/java/org/everit/json/schema/NumberSchema.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77

88
/**
99
* Number schema validator.
10-
*
11-
* @ThreadSafe
1210
*/
1311
public class NumberSchema extends Schema {
1412

core/src/main/java/org/everit/json/schema/Schema.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ public void validate(Object subject) {
132132
* be queried.
133133
* <p>
134134
* For example the field {@code "#/rectangle/a"} is defined by the following schema:
135-
* <p>
135+
* </p>
136136
* <pre>
137137
* <code>
138138
* objectWithSchemaRectangleDep" : {
@@ -161,7 +161,6 @@ public void validate(Object subject) {
161161
* }
162162
* </code>
163163
* </pre>
164-
* <p>
165164
* The default implementation of this method always returns false.
166165
*
167166
* @param field

core/src/main/java/org/everit/json/schema/ValidationException.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ private static List<String> getAllMessages(List<ValidationException> causes) {
3838
* Sort of static factory method. It is used by {@link ObjectSchema} and {@link ArraySchema} to
3939
* create {@code ValidationException}s, handling the case of multiple violations occuring during
4040
* validation.
41-
* <p>
4241
* <ul>
4342
* <li>If {@code failures} is empty, then it doesn't do anything</li>
4443
* <li>If {@code failures} contains 1 exception instance, then that will be thrown</li>

core/src/main/java/org/everit/json/schema/loader/SchemaLoader.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ public SchemaLoaderBuilder() {
7878
* Registers a format validator with the name returned by {@link FormatValidator#formatName()}.
7979
*
8080
* @param formatValidator
81+
* the format validator to be registered with its name
8182
* @return {@code this}
8283
*/
8384
public SchemaLoaderBuilder addFormatValidator(FormatValidator formatValidator) {

core/src/main/java/org/everit/json/schema/loader/internal/TypeBasedMultiplexer.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@
2222
* {@code if..instanceof..casting} constructs. Together with the {@link OnTypeConsumer}
2323
* implementations it forms a fluent API to deal with the parts of the JSON schema where multiple
2424
* kind of values are valid for a given key.
25-
* </p>
26-
* <p>
2725
* <p>
2826
* Example usage: <code>
2927
* Object additProps = schemaJson.get("additionalProperties");

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>org.everit.json</groupId>
88
<artifactId>org.everit.json.schema.parent</artifactId>
9-
<version>1.10.0-SNAPSHOT</version>
9+
<version>1.10.0</version>
1010

1111
<packaging>pom</packaging>
1212

tests/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<parent>
2525
<groupId>org.everit.json</groupId>
2626
<artifactId>org.everit.json.schema.parent</artifactId>
27-
<version>1.10.0-SNAPSHOT</version>
27+
<version>1.10.0</version>
2828
</parent>
2929

3030
<artifactId>org.everit.json.schema.tests</artifactId>

0 commit comments

Comments
 (0)