Skip to content

Commit

Permalink
Fix :Exception when report include a cassandra table
Browse files Browse the repository at this point in the history
and a data model table- (T68048)
  • Loading branch information
gliu committed Nov 1, 2013
1 parent 55939da commit ec9de70
Showing 1 changed file with 9 additions and 0 deletions.
Expand Up @@ -69,6 +69,15 @@ public void close( )
designClassLoader = null;
}
}

public URLClassLoader getDesignClassLoader()
{
if ( designClassLoader == null )
{
createDesignClassLoader( );
}
return designClassLoader;
}

public Class loadClass( String className ) throws ClassNotFoundException
{
Expand Down

0 comments on commit ec9de70

Please sign in to comment.