Skip to content

Commit 2192d31

Browse files
committed
fixed compiler error
1 parent 9d96be3 commit 2192d31

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/java/io/ipdata/client/service/CachingInternalClient.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,8 @@ public IpdataModel ipdata(String ip) throws IpdataException {
9393
}
9494

9595
@Override
96-
public List<IpdataModel> bulkIpdata(List<String> ips) throws IpdataException {
97-
return ipdataInternalClient.bulkIpdata(ips);
96+
public List<IpdataModel> bulk(List<String> ips) throws IpdataException {
97+
return ipdataInternalClient.bulk(ips);
9898
}
9999

100100
@Delegate(types = IpdataInternalSingleFieldClient.class, excludes = DelegateExcludes.class)

0 commit comments

Comments
 (0)