We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d96be3 commit 2192d31Copy full SHA for 2192d31
1 file changed
src/main/java/io/ipdata/client/service/CachingInternalClient.java
@@ -93,8 +93,8 @@ public IpdataModel ipdata(String ip) throws IpdataException {
93
}
94
95
@Override
96
- public List<IpdataModel> bulkIpdata(List<String> ips) throws IpdataException {
97
- return ipdataInternalClient.bulkIpdata(ips);
+ public List<IpdataModel> bulk(List<String> ips) throws IpdataException {
+ return ipdataInternalClient.bulk(ips);
98
99
100
@Delegate(types = IpdataInternalSingleFieldClient.class, excludes = DelegateExcludes.class)
0 commit comments