Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 325079
Collapse All | Expand All

(-)jnr-netdb-1.0/src/jnr/netdb/NetDBIterator.java (-1 / +1 lines)
Lines 24-30 final class NetDBIterator implements jav Link Here
24
24
25
            String[] line = s.split("#", 2);
25
            String[] line = s.split("#", 2);
26
            // Skip empty lines, or lines that are all comment
26
            // Skip empty lines, or lines that are all comment
27
            if (line.length < 0 || line[0].isEmpty()) {
27
            if (line.length <= 0 || line[0].length() == 0) {
28
                continue;
28
                continue;
29
            }
29
            }
30
30

Return to bug 325079