Skip to content

Commit e5500b4

Browse files
committed
Add a tag for formatting
1 parent 5cca672 commit e5500b4

File tree

5 files changed

+6
-7
lines changed

5 files changed

+6
-7
lines changed

src/main/java/com/maxmind/db/CacheKey.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package com.maxmind.db;
22

33
/**
4-
* CacheKey is used as a key in the node cache. It contains the offset of the
4+
* {@code CacheKey} is used as a key in the node cache. It contains the offset of the
55
* node in the database file, the class of the data at that node, and the type
66
* of the data at that node.
77
*

src/main/java/com/maxmind/db/DecodedValue.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package com.maxmind.db;
22

33
/**
4-
* DecodedValue is a wrapper for the decoded value and the number of bytes used
4+
* {@code DecodedValue} is a wrapper for the decoded value and the number of bytes used
55
* to decode it.
66
*/
77
public final class DecodedValue {

src/main/java/com/maxmind/db/InvalidNetworkException.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@
88
*/
99
public class InvalidNetworkException extends Exception {
1010
/**
11-
* @param ip
12-
* the IP address that was used
11+
* @param ip the IP address that was used
1312
*/
1413
public InvalidNetworkException(InetAddress ip) {
1514
super("you attempted to use an IPv6 network in an IPv4-only database: " + ip.toString());

src/main/java/com/maxmind/db/MaxMindDbConstructor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import java.lang.annotation.RetentionPolicy;
55

66
/**
7-
* MaxMindDbConstructor is an annotation that can be used to mark a constructor
7+
* {@code MaxMindDbConstructor} is an annotation that can be used to mark a constructor
88
* that should be used to create an instance of a class when decoding a MaxMind
99
* DB file.
1010
*/

src/main/java/com/maxmind/db/Metadata.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import java.util.Map;
77

88
/**
9-
* Metadata holds data associated with the database itself.
9+
* {@code Metadata} holds data associated with the database itself.
1010
*/
1111
public final class Metadata {
1212
private final int binaryFormatMajorVersion;
@@ -31,7 +31,7 @@ public final class Metadata {
3131
private final int searchTreeSize;
3232

3333
/**
34-
* Constructs a Metadata object.
34+
* Constructs a {@code Metadata} object.
3535
*
3636
* @param binaryFormatMajorVersion The major version number for the database's
3737
* binary format.

0 commit comments

Comments
 (0)