public synchronized void updateLoadedClasses(NSNotification notification) {
Reloader reloader = ReloaderFactory.getInstance();
if (notification != null) {
WORequest request = (WORequest) notification.object();
String key = "/" + WOApplication.application().resourceRequestHandlerKey();
if (request.uri().indexOf(request.adaptorPrefix()) != 0 || request.uri().indexOf(key) >= 0) {
return;
}
}
NSDictionary classList = WOClassCacheAccessor.getClassCache();
String unknownClassName = "com.webobjects.foundation._NSUtilities$_NoClassUnderTheSun";