cassandra-analytics-integration-framework/src/main/java/org/apache/cassandra/testing/IsolatedDTestClassLoaderWrapper.java [148:169]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            Class<?> type = findLoadedClass(name);
            if (type == null)
            {
                try
                {
                    type = findClass(name);
                }
                catch (ClassNotFoundException | SecurityException | LinkageError exception)
                {
                    // ClassNotFoundException thrown if class not found
                }
                if (type == null)
                {
                    // If not found, then invoke findClass in order to find the class
                    type = super.loadClass(name, false);
                }
            }
            if (resolve)
            {
                resolveClass(type);
            }
            return type;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



cassandra-bridge/src/main/java/org/apache/cassandra/bridge/PostDelegationClassLoader.java [46:67]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        Class<?> type = findLoadedClass(name);
        if (type == null)
        {
            try
            {
                type = findClass(name);
            }
            catch (ClassNotFoundException | SecurityException | LinkageError exception)
            {
                // ClassNotFoundException thrown if class not found
            }
            if (type == null)
            {
                // If not found, then invoke findClass in order to find the class
                type = super.loadClass(name, false);
            }
        }
        if (resolve)
        {
            resolveClass(type);
        }
        return type;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



