Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Subject (0.17 sec)

  1. src/main/java/jcifs/smb1/netbios/Name.java

                                            */
            if( scope != null && scope.length() != 0 ) {
                result += scope.hashCode();
            }
            return result;
        }
        public boolean equals( Object obj ) {
            Name n;
    
            if( !( obj instanceof Name )) {
                return false;
            }
            n = (Name)obj;
            if( scope == null && n.scope == null ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 6.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/netbios/Name.java

            if ( this.scope != null && this.scope.length() != 0 ) {
                result += this.scope.hashCode();
            }
            return result;
        }
    
    
        @Override
        public boolean equals ( Object obj ) {
            Name n;
    
            if ( ! ( obj instanceof Name ) ) {
                return false;
            }
            n = (Name) obj;
            if ( this.scope == null && n.scope == null ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 7.7K bytes
    - Viewed (0)
Back to top