From da92967fabf49425d0693ddb2ab2d56973fec300 Mon Sep 17 00:00:00 2001 From: Gregory Oschwald Date: Tue, 30 Aug 2022 10:53:58 -0700 Subject: [PATCH] Add missing params in docs --- src/main/java/com/maxmind/db/Reader.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main/java/com/maxmind/db/Reader.java b/src/main/java/com/maxmind/db/Reader.java index eb57cd8f..2837d81d 100644 --- a/src/main/java/com/maxmind/db/Reader.java +++ b/src/main/java/com/maxmind/db/Reader.java @@ -141,6 +141,7 @@ private Reader(BufferHolder bufferHolder, String name, NodeCache cache) throws I /** * Looks up ipAddress in the MaxMind DB. * + * @param the type to populate. * @param ipAddress the IP address to look up. * @param cls the class of object to populate. * @return the object. @@ -153,7 +154,9 @@ public T get(InetAddress ipAddress, Class cls) throws IOException { /** * Looks up ipAddress in the MaxMind DB. * + * @param the type to populate. * @param ipAddress the IP address to look up. + * @param cls the class of object to populate. * @return the record for the IP address. If there is no data for the * address, the non-null {@link DatabaseRecord} will still be returned. * @throws IOException if a file I/O error occurs.