Java Code Examples for java.io.OutputStream#hashCode()

The following examples show how to use java.io.OutputStream#hashCode() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ClientId.java    From dragonwell8_jdk with GNU General Public License v2.0 4 votes vote down vote up
ClientId(int version, String hostname, int port, String protocol,
        Control[] bindCtls, OutputStream trace, String socketFactory) {
    this.version = version;
    this.hostname = hostname.toLowerCase(Locale.ENGLISH);  // ignore case
    this.port = port;
    this.protocol = protocol;
    this.bindCtls = (bindCtls != null ? bindCtls.clone() : null);
    this.trace = trace;
    //
    // Needed for custom socket factory pooling
    //
    this.socketFactory = socketFactory;
    if ((socketFactory != null) &&
         !socketFactory.equals(LdapCtx.DEFAULT_SSL_FACTORY)) {
        try {
            Class<?> socketFactoryClass =
                    Obj.helper.loadClass(socketFactory);
            Class<?> objClass = Class.forName("java.lang.Object");
            this.sockComparator = socketFactoryClass.getMethod(
                            "compare", new Class<?>[]{objClass, objClass});
            Method getDefault = socketFactoryClass.getMethod(
                                        "getDefault", new Class<?>[]{});
            this.factory =
                    (SocketFactory)getDefault.invoke(null, new Object[]{});
        } catch (Exception e) {
            // Ignore it here, the same exceptions are/will be handled by
            // LdapPoolManager and Connection classes.
            if (debug) {
                System.out.println("ClientId received an exception");
                e.printStackTrace();
            }
        }
    } else {
         isDefaultSockFactory = true;
    }

    // The SocketFactory field is not used in the myHash
    // computation as there is no right way to compute the hash code
    // for this field. There is no harm in skipping it from the hash
    // computation
    myHash = version + port
        + (trace != null ? trace.hashCode() : 0)
        + (this.hostname != null ? this.hostname.hashCode() : 0)
        + (protocol != null ? protocol.hashCode() : 0)
        + (ctlHash=hashCodeControls(bindCtls));
}
 
Example 2
Source File: ClientId.java    From TencentKona-8 with GNU General Public License v2.0 4 votes vote down vote up
ClientId(int version, String hostname, int port, String protocol,
        Control[] bindCtls, OutputStream trace, String socketFactory) {
    this.version = version;
    this.hostname = hostname.toLowerCase(Locale.ENGLISH);  // ignore case
    this.port = port;
    this.protocol = protocol;
    this.bindCtls = (bindCtls != null ? bindCtls.clone() : null);
    this.trace = trace;
    //
    // Needed for custom socket factory pooling
    //
    this.socketFactory = socketFactory;
    if ((socketFactory != null) &&
         !socketFactory.equals(LdapCtx.DEFAULT_SSL_FACTORY)) {
        try {
            Class<?> socketFactoryClass =
                    Obj.helper.loadClass(socketFactory);
            Class<?> objClass = Class.forName("java.lang.Object");
            this.sockComparator = socketFactoryClass.getMethod(
                            "compare", new Class<?>[]{objClass, objClass});
            Method getDefault = socketFactoryClass.getMethod(
                                        "getDefault", new Class<?>[]{});
            this.factory =
                    (SocketFactory)getDefault.invoke(null, new Object[]{});
        } catch (Exception e) {
            // Ignore it here, the same exceptions are/will be handled by
            // LdapPoolManager and Connection classes.
            if (debug) {
                System.out.println("ClientId received an exception");
                e.printStackTrace();
            }
        }
    } else {
         isDefaultSockFactory = true;
    }

    // The SocketFactory field is not used in the myHash
    // computation as there is no right way to compute the hash code
    // for this field. There is no harm in skipping it from the hash
    // computation
    myHash = version + port
        + (trace != null ? trace.hashCode() : 0)
        + (this.hostname != null ? this.hostname.hashCode() : 0)
        + (protocol != null ? protocol.hashCode() : 0)
        + (ctlHash=hashCodeControls(bindCtls));
}
 
Example 3
Source File: ClientId.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
ClientId(int version, String hostname, int port, String protocol,
        Control[] bindCtls, OutputStream trace, String socketFactory) {
    this.version = version;
    this.hostname = hostname.toLowerCase(Locale.ENGLISH);  // ignore case
    this.port = port;
    this.protocol = protocol;
    this.bindCtls = (bindCtls != null ? bindCtls.clone() : null);
    this.trace = trace;
    //
    // Needed for custom socket factory pooling
    //
    this.socketFactory = socketFactory;
    if ((socketFactory != null) &&
         !socketFactory.equals(LdapCtx.DEFAULT_SSL_FACTORY)) {
        try {
            Class<?> socketFactoryClass =
                    Obj.helper.loadClass(socketFactory);
            Class<?> objClass = Class.forName("java.lang.Object");
            this.sockComparator = socketFactoryClass.getMethod(
                            "compare", new Class<?>[]{objClass, objClass});
            Method getDefault = socketFactoryClass.getMethod(
                                        "getDefault", new Class<?>[]{});
            this.factory =
                    (SocketFactory)getDefault.invoke(null, new Object[]{});
        } catch (Exception e) {
            // Ignore it here, the same exceptions are/will be handled by
            // LdapPoolManager and Connection classes.
            if (debug) {
                System.out.println("ClientId received an exception");
                e.printStackTrace();
            }
        }
    } else {
         isDefaultSockFactory = true;
    }

    // The SocketFactory field is not used in the myHash
    // computation as there is no right way to compute the hash code
    // for this field. There is no harm in skipping it from the hash
    // computation
    myHash = version + port
        + (trace != null ? trace.hashCode() : 0)
        + (this.hostname != null ? this.hostname.hashCode() : 0)
        + (protocol != null ? protocol.hashCode() : 0)
        + (ctlHash=hashCodeControls(bindCtls));
}
 
Example 4
Source File: ClientId.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
ClientId(int version, String hostname, int port, String protocol,
        Control[] bindCtls, OutputStream trace, String socketFactory) {
    this.version = version;
    this.hostname = hostname.toLowerCase(Locale.ENGLISH);  // ignore case
    this.port = port;
    this.protocol = protocol;
    this.bindCtls = (bindCtls != null ? bindCtls.clone() : null);
    this.trace = trace;
    //
    // Needed for custom socket factory pooling
    //
    this.socketFactory = socketFactory;
    if ((socketFactory != null) &&
         !socketFactory.equals(LdapCtx.DEFAULT_SSL_FACTORY)) {
        try {
            Class<?> socketFactoryClass =
                    Obj.helper.loadClass(socketFactory);
            Class<?> objClass = Class.forName("java.lang.Object");
            this.sockComparator = socketFactoryClass.getMethod(
                            "compare", new Class<?>[]{objClass, objClass});
            Method getDefault = socketFactoryClass.getMethod(
                                        "getDefault", new Class<?>[]{});
            this.factory =
                    (SocketFactory)getDefault.invoke(null, new Object[]{});
        } catch (Exception e) {
            // Ignore it here, the same exceptions are/will be handled by
            // LdapPoolManager and Connection classes.
            if (debug) {
                System.out.println("ClientId received an exception");
                e.printStackTrace();
            }
        }
    } else {
         isDefaultSockFactory = true;
    }

    // The SocketFactory field is not used in the myHash
    // computation as there is no right way to compute the hash code
    // for this field. There is no harm in skipping it from the hash
    // computation
    myHash = version + port
        + (trace != null ? trace.hashCode() : 0)
        + (this.hostname != null ? this.hostname.hashCode() : 0)
        + (protocol != null ? protocol.hashCode() : 0)
        + (ctlHash=hashCodeControls(bindCtls));
}
 
Example 5
Source File: ClientId.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 4 votes vote down vote up
ClientId(int version, String hostname, int port, String protocol,
        Control[] bindCtls, OutputStream trace, String socketFactory) {
    this.version = version;
    this.hostname = hostname.toLowerCase(Locale.ENGLISH);  // ignore case
    this.port = port;
    this.protocol = protocol;
    this.bindCtls = (bindCtls != null ? bindCtls.clone() : null);
    this.trace = trace;
    //
    // Needed for custom socket factory pooling
    //
    this.socketFactory = socketFactory;
    if ((socketFactory != null) &&
         !socketFactory.equals(LdapCtx.DEFAULT_SSL_FACTORY)) {
        try {
            Class<?> socketFactoryClass =
                    Obj.helper.loadClass(socketFactory);
            Class<?> objClass = Class.forName("java.lang.Object");
            this.sockComparator = socketFactoryClass.getMethod(
                            "compare", new Class<?>[]{objClass, objClass});
            Method getDefault = socketFactoryClass.getMethod(
                                        "getDefault", new Class<?>[]{});
            this.factory =
                    (SocketFactory)getDefault.invoke(null, new Object[]{});
        } catch (Exception e) {
            // Ignore it here, the same exceptions are/will be handled by
            // LdapPoolManager and Connection classes.
            if (debug) {
                System.out.println("ClientId received an exception");
                e.printStackTrace();
            }
        }
    } else {
         isDefaultSockFactory = true;
    }

    // The SocketFactory field is not used in the myHash
    // computation as there is no right way to compute the hash code
    // for this field. There is no harm in skipping it from the hash
    // computation
    myHash = version + port
        + (trace != null ? trace.hashCode() : 0)
        + (this.hostname != null ? this.hostname.hashCode() : 0)
        + (protocol != null ? protocol.hashCode() : 0)
        + (ctlHash=hashCodeControls(bindCtls));
}
 
Example 6
Source File: ClientId.java    From openjdk-jdk9 with GNU General Public License v2.0 4 votes vote down vote up
ClientId(int version, String hostname, int port, String protocol,
        Control[] bindCtls, OutputStream trace, String socketFactory) {
    this.version = version;
    this.hostname = hostname.toLowerCase(Locale.ENGLISH);  // ignore case
    this.port = port;
    this.protocol = protocol;
    this.bindCtls = (bindCtls != null ? bindCtls.clone() : null);
    this.trace = trace;
    //
    // Needed for custom socket factory pooling
    //
    this.socketFactory = socketFactory;
    if ((socketFactory != null) &&
         !socketFactory.equals(LdapCtx.DEFAULT_SSL_FACTORY)) {
        try {
            Class<?> socketFactoryClass =
                    Obj.helper.loadClass(socketFactory);
            this.sockComparator = socketFactoryClass.getMethod(
                            "compare", new Class<?>[]{Object.class, Object.class});
            Method getDefault = socketFactoryClass.getMethod(
                                        "getDefault", new Class<?>[]{});
            this.factory =
                    (SocketFactory)getDefault.invoke(null, new Object[]{});
        } catch (Exception e) {
            // Ignore it here, the same exceptions are/will be handled by
            // LdapPoolManager and Connection classes.
            if (debug) {
                System.out.println("ClientId received an exception");
                e.printStackTrace();
            }
        }
    } else {
         isDefaultSockFactory = true;
    }

    // The SocketFactory field is not used in the myHash
    // computation as there is no right way to compute the hash code
    // for this field. There is no harm in skipping it from the hash
    // computation
    myHash = version + port
        + (trace != null ? trace.hashCode() : 0)
        + (this.hostname != null ? this.hostname.hashCode() : 0)
        + (protocol != null ? protocol.hashCode() : 0)
        + (ctlHash=hashCodeControls(bindCtls));
}
 
Example 7
Source File: ClientId.java    From jdk8u-jdk with GNU General Public License v2.0 4 votes vote down vote up
ClientId(int version, String hostname, int port, String protocol,
        Control[] bindCtls, OutputStream trace, String socketFactory) {
    this.version = version;
    this.hostname = hostname.toLowerCase(Locale.ENGLISH);  // ignore case
    this.port = port;
    this.protocol = protocol;
    this.bindCtls = (bindCtls != null ? bindCtls.clone() : null);
    this.trace = trace;
    //
    // Needed for custom socket factory pooling
    //
    this.socketFactory = socketFactory;
    if ((socketFactory != null) &&
         !socketFactory.equals(LdapCtx.DEFAULT_SSL_FACTORY)) {
        try {
            Class<?> socketFactoryClass =
                    Obj.helper.loadClass(socketFactory);
            Class<?> objClass = Class.forName("java.lang.Object");
            this.sockComparator = socketFactoryClass.getMethod(
                            "compare", new Class<?>[]{objClass, objClass});
            Method getDefault = socketFactoryClass.getMethod(
                                        "getDefault", new Class<?>[]{});
            this.factory =
                    (SocketFactory)getDefault.invoke(null, new Object[]{});
        } catch (Exception e) {
            // Ignore it here, the same exceptions are/will be handled by
            // LdapPoolManager and Connection classes.
            if (debug) {
                System.out.println("ClientId received an exception");
                e.printStackTrace();
            }
        }
    } else {
         isDefaultSockFactory = true;
    }

    // The SocketFactory field is not used in the myHash
    // computation as there is no right way to compute the hash code
    // for this field. There is no harm in skipping it from the hash
    // computation
    myHash = version + port
        + (trace != null ? trace.hashCode() : 0)
        + (this.hostname != null ? this.hostname.hashCode() : 0)
        + (protocol != null ? protocol.hashCode() : 0)
        + (ctlHash=hashCodeControls(bindCtls));
}
 
Example 8
Source File: ClientId.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
ClientId(int version, String hostname, int port, String protocol,
        Control[] bindCtls, OutputStream trace, String socketFactory) {
    this.version = version;
    this.hostname = hostname.toLowerCase(Locale.ENGLISH);  // ignore case
    this.port = port;
    this.protocol = protocol;
    this.bindCtls = (bindCtls != null ? bindCtls.clone() : null);
    this.trace = trace;
    //
    // Needed for custom socket factory pooling
    //
    this.socketFactory = socketFactory;
    if ((socketFactory != null) &&
         !socketFactory.equals(LdapCtx.DEFAULT_SSL_FACTORY)) {
        try {
            Class<?> socketFactoryClass =
                    Obj.helper.loadClass(socketFactory);
            Class<?> objClass = Class.forName("java.lang.Object");
            this.sockComparator = socketFactoryClass.getMethod(
                            "compare", new Class<?>[]{objClass, objClass});
            Method getDefault = socketFactoryClass.getMethod(
                                        "getDefault", new Class<?>[]{});
            this.factory =
                    (SocketFactory)getDefault.invoke(null, new Object[]{});
        } catch (Exception e) {
            // Ignore it here, the same exceptions are/will be handled by
            // LdapPoolManager and Connection classes.
            if (debug) {
                System.out.println("ClientId received an exception");
                e.printStackTrace();
            }
        }
    } else {
         isDefaultSockFactory = true;
    }

    // The SocketFactory field is not used in the myHash
    // computation as there is no right way to compute the hash code
    // for this field. There is no harm in skipping it from the hash
    // computation
    myHash = version + port
        + (trace != null ? trace.hashCode() : 0)
        + (this.hostname != null ? this.hostname.hashCode() : 0)
        + (protocol != null ? protocol.hashCode() : 0)
        + (ctlHash=hashCodeControls(bindCtls));
}
 
Example 9
Source File: ClientId.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
ClientId(int version, String hostname, int port, String protocol,
        Control[] bindCtls, OutputStream trace, String socketFactory) {
    this.version = version;
    this.hostname = hostname.toLowerCase(Locale.ENGLISH);  // ignore case
    this.port = port;
    this.protocol = protocol;
    this.bindCtls = (bindCtls != null ? bindCtls.clone() : null);
    this.trace = trace;
    //
    // Needed for custom socket factory pooling
    //
    this.socketFactory = socketFactory;
    if ((socketFactory != null) &&
         !socketFactory.equals(LdapCtx.DEFAULT_SSL_FACTORY)) {
        try {
            Class<?> socketFactoryClass =
                    Obj.helper.loadClass(socketFactory);
            Class<?> objClass = Class.forName("java.lang.Object");
            this.sockComparator = socketFactoryClass.getMethod(
                            "compare", new Class<?>[]{objClass, objClass});
            Method getDefault = socketFactoryClass.getMethod(
                                        "getDefault", new Class<?>[]{});
            this.factory =
                    (SocketFactory)getDefault.invoke(null, new Object[]{});
        } catch (Exception e) {
            // Ignore it here, the same exceptions are/will be handled by
            // LdapPoolManager and Connection classes.
            if (debug) {
                System.out.println("ClientId received an exception");
                e.printStackTrace();
            }
        }
    } else {
         isDefaultSockFactory = true;
    }

    // The SocketFactory field is not used in the myHash
    // computation as there is no right way to compute the hash code
    // for this field. There is no harm in skipping it from the hash
    // computation
    myHash = version + port
        + (trace != null ? trace.hashCode() : 0)
        + (this.hostname != null ? this.hostname.hashCode() : 0)
        + (protocol != null ? protocol.hashCode() : 0)
        + (ctlHash=hashCodeControls(bindCtls));
}
 
Example 10
Source File: ClientId.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
ClientId(int version, String hostname, int port, String protocol,
        Control[] bindCtls, OutputStream trace, String socketFactory) {
    this.version = version;
    this.hostname = hostname.toLowerCase(Locale.ENGLISH);  // ignore case
    this.port = port;
    this.protocol = protocol;
    this.bindCtls = (bindCtls != null ? bindCtls.clone() : null);
    this.trace = trace;
    //
    // Needed for custom socket factory pooling
    //
    this.socketFactory = socketFactory;
    if ((socketFactory != null) &&
         !socketFactory.equals(LdapCtx.DEFAULT_SSL_FACTORY)) {
        try {
            Class<?> socketFactoryClass =
                    Obj.helper.loadClass(socketFactory);
            Class<?> objClass = Class.forName("java.lang.Object");
            this.sockComparator = socketFactoryClass.getMethod(
                            "compare", new Class<?>[]{objClass, objClass});
            Method getDefault = socketFactoryClass.getMethod(
                                        "getDefault", new Class<?>[]{});
            this.factory =
                    (SocketFactory)getDefault.invoke(null, new Object[]{});
        } catch (Exception e) {
            // Ignore it here, the same exceptions are/will be handled by
            // LdapPoolManager and Connection classes.
            if (debug) {
                System.out.println("ClientId received an exception");
                e.printStackTrace();
            }
        }
    } else {
         isDefaultSockFactory = true;
    }

    // The SocketFactory field is not used in the myHash
    // computation as there is no right way to compute the hash code
    // for this field. There is no harm in skipping it from the hash
    // computation
    myHash = version + port
        + (trace != null ? trace.hashCode() : 0)
        + (this.hostname != null ? this.hostname.hashCode() : 0)
        + (protocol != null ? protocol.hashCode() : 0)
        + (ctlHash=hashCodeControls(bindCtls));
}
 
Example 11
Source File: ClientId.java    From jdk8u_jdk with GNU General Public License v2.0 4 votes vote down vote up
ClientId(int version, String hostname, int port, String protocol,
        Control[] bindCtls, OutputStream trace, String socketFactory) {
    this.version = version;
    this.hostname = hostname.toLowerCase(Locale.ENGLISH);  // ignore case
    this.port = port;
    this.protocol = protocol;
    this.bindCtls = (bindCtls != null ? bindCtls.clone() : null);
    this.trace = trace;
    //
    // Needed for custom socket factory pooling
    //
    this.socketFactory = socketFactory;
    if ((socketFactory != null) &&
         !socketFactory.equals(LdapCtx.DEFAULT_SSL_FACTORY)) {
        try {
            Class<?> socketFactoryClass =
                    Obj.helper.loadClass(socketFactory);
            Class<?> objClass = Class.forName("java.lang.Object");
            this.sockComparator = socketFactoryClass.getMethod(
                            "compare", new Class<?>[]{objClass, objClass});
            Method getDefault = socketFactoryClass.getMethod(
                                        "getDefault", new Class<?>[]{});
            this.factory =
                    (SocketFactory)getDefault.invoke(null, new Object[]{});
        } catch (Exception e) {
            // Ignore it here, the same exceptions are/will be handled by
            // LdapPoolManager and Connection classes.
            if (debug) {
                System.out.println("ClientId received an exception");
                e.printStackTrace();
            }
        }
    } else {
         isDefaultSockFactory = true;
    }

    // The SocketFactory field is not used in the myHash
    // computation as there is no right way to compute the hash code
    // for this field. There is no harm in skipping it from the hash
    // computation
    myHash = version + port
        + (trace != null ? trace.hashCode() : 0)
        + (this.hostname != null ? this.hostname.hashCode() : 0)
        + (protocol != null ? protocol.hashCode() : 0)
        + (ctlHash=hashCodeControls(bindCtls));
}
 
Example 12
Source File: ClientId.java    From jdk8u-jdk with GNU General Public License v2.0 4 votes vote down vote up
ClientId(int version, String hostname, int port, String protocol,
        Control[] bindCtls, OutputStream trace, String socketFactory) {
    this.version = version;
    this.hostname = hostname.toLowerCase(Locale.ENGLISH);  // ignore case
    this.port = port;
    this.protocol = protocol;
    this.bindCtls = (bindCtls != null ? bindCtls.clone() : null);
    this.trace = trace;
    //
    // Needed for custom socket factory pooling
    //
    this.socketFactory = socketFactory;
    if ((socketFactory != null) &&
         !socketFactory.equals(LdapCtx.DEFAULT_SSL_FACTORY)) {
        try {
            Class<?> socketFactoryClass =
                    Obj.helper.loadClass(socketFactory);
            Class<?> objClass = Class.forName("java.lang.Object");
            this.sockComparator = socketFactoryClass.getMethod(
                            "compare", new Class<?>[]{objClass, objClass});
            Method getDefault = socketFactoryClass.getMethod(
                                        "getDefault", new Class<?>[]{});
            this.factory =
                    (SocketFactory)getDefault.invoke(null, new Object[]{});
        } catch (Exception e) {
            // Ignore it here, the same exceptions are/will be handled by
            // LdapPoolManager and Connection classes.
            if (debug) {
                System.out.println("ClientId received an exception");
                e.printStackTrace();
            }
        }
    } else {
         isDefaultSockFactory = true;
    }

    // The SocketFactory field is not used in the myHash
    // computation as there is no right way to compute the hash code
    // for this field. There is no harm in skipping it from the hash
    // computation
    myHash = version + port
        + (trace != null ? trace.hashCode() : 0)
        + (this.hostname != null ? this.hostname.hashCode() : 0)
        + (protocol != null ? protocol.hashCode() : 0)
        + (ctlHash=hashCodeControls(bindCtls));
}
 
Example 13
Source File: ClientId.java    From jdk8u-dev-jdk with GNU General Public License v2.0 4 votes vote down vote up
ClientId(int version, String hostname, int port, String protocol,
        Control[] bindCtls, OutputStream trace, String socketFactory) {
    this.version = version;
    this.hostname = hostname.toLowerCase(Locale.ENGLISH);  // ignore case
    this.port = port;
    this.protocol = protocol;
    this.bindCtls = (bindCtls != null ? bindCtls.clone() : null);
    this.trace = trace;
    //
    // Needed for custom socket factory pooling
    //
    this.socketFactory = socketFactory;
    if ((socketFactory != null) &&
         !socketFactory.equals(LdapCtx.DEFAULT_SSL_FACTORY)) {
        try {
            Class<?> socketFactoryClass =
                    Obj.helper.loadClass(socketFactory);
            Class<?> objClass = Class.forName("java.lang.Object");
            this.sockComparator = socketFactoryClass.getMethod(
                            "compare", new Class<?>[]{objClass, objClass});
            Method getDefault = socketFactoryClass.getMethod(
                                        "getDefault", new Class<?>[]{});
            this.factory =
                    (SocketFactory)getDefault.invoke(null, new Object[]{});
        } catch (Exception e) {
            // Ignore it here, the same exceptions are/will be handled by
            // LdapPoolManager and Connection classes.
            if (debug) {
                System.out.println("ClientId received an exception");
                e.printStackTrace();
            }
        }
    } else {
         isDefaultSockFactory = true;
    }

    // The SocketFactory field is not used in the myHash
    // computation as there is no right way to compute the hash code
    // for this field. There is no harm in skipping it from the hash
    // computation
    myHash = version + port
        + (trace != null ? trace.hashCode() : 0)
        + (this.hostname != null ? this.hostname.hashCode() : 0)
        + (protocol != null ? protocol.hashCode() : 0)
        + (ctlHash=hashCodeControls(bindCtls));
}