do not use Collections.emptyList()
This commit is contained in:
parent
e322186112
commit
69a0a34239
@ -184,11 +184,11 @@ public class SignKeyset extends CLBase {
|
|||||||
private static List<DnsKeyPair> getKeys(String[] keyfiles, int startIndex,
|
private static List<DnsKeyPair> getKeys(String[] keyfiles, int startIndex,
|
||||||
File inDirectory) throws IOException {
|
File inDirectory) throws IOException {
|
||||||
if (keyfiles == null)
|
if (keyfiles == null)
|
||||||
return Collections.emptyList();
|
return new ArrayList<>();
|
||||||
|
|
||||||
int len = keyfiles.length - startIndex;
|
int len = keyfiles.length - startIndex;
|
||||||
if (len <= 0)
|
if (len <= 0)
|
||||||
return Collections.emptyList();
|
return new ArrayList<>();
|
||||||
|
|
||||||
ArrayList<DnsKeyPair> keys = new ArrayList<>(len);
|
ArrayList<DnsKeyPair> keys = new ArrayList<>(len);
|
||||||
|
|
||||||
|
@ -191,11 +191,11 @@ public class SignRRset extends CLBase {
|
|||||||
private static List<DnsKeyPair> getKeys(String[] keyfiles, int startIndex,
|
private static List<DnsKeyPair> getKeys(String[] keyfiles, int startIndex,
|
||||||
File inDirectory) throws IOException {
|
File inDirectory) throws IOException {
|
||||||
if (keyfiles == null)
|
if (keyfiles == null)
|
||||||
return Collections.emptyList();
|
return new ArrayList<>();
|
||||||
|
|
||||||
int len = keyfiles.length - startIndex;
|
int len = keyfiles.length - startIndex;
|
||||||
if (len <= 0)
|
if (len <= 0)
|
||||||
return Collections.emptyList();
|
return new ArrayList<>();
|
||||||
|
|
||||||
ArrayList<DnsKeyPair> keys = new ArrayList<>(len);
|
ArrayList<DnsKeyPair> keys = new ArrayList<>(len);
|
||||||
|
|
||||||
|
@ -331,11 +331,11 @@ public class SignZone extends CLBase {
|
|||||||
private static List<DnsKeyPair> getKeys(String[] keyfiles, int startIndex,
|
private static List<DnsKeyPair> getKeys(String[] keyfiles, int startIndex,
|
||||||
File inDirectory) throws IOException {
|
File inDirectory) throws IOException {
|
||||||
if (keyfiles == null)
|
if (keyfiles == null)
|
||||||
return Collections.emptyList();
|
return new ArrayList<>();
|
||||||
|
|
||||||
int len = keyfiles.length - startIndex;
|
int len = keyfiles.length - startIndex;
|
||||||
if (len <= 0)
|
if (len <= 0)
|
||||||
return Collections.emptyList();
|
return new ArrayList<>();
|
||||||
|
|
||||||
ArrayList<DnsKeyPair> keys = new ArrayList<>(len);
|
ArrayList<DnsKeyPair> keys = new ArrayList<>(len);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user