Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Berg (0.15 sec)

  1. src/main/java/jcifs/smb/MIEName.java

        @Override
        public boolean equals ( Object other ) {
    
            if ( other instanceof MIEName ) {
                MIEName terg = (MIEName) other;
                if ( Objects.equals(this.oid, terg.oid)
                        && ( ( this.name == null && terg.name == null ) || ( this.name != null && this.name.equalsIgnoreCase(terg.name) ) ) ) {
                    return true;
                }
            }
            return false;
        }
    
    
        /*
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.5K bytes
    - Viewed (0)
Back to top