Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/14/16 10:16:50 (7 years ago)
Author:
sraggl
Message:

#2701 Merged with trunk to get new version of LinearLinkageEncoding
Improved MoveGenerator

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/MemPRAlgorithm/HeuristicLab.PluginInfrastructure/3.3/Manager/PluginValidator.cs

    r14185 r14487  
    260260        }
    261261        // ignore exceptions. Just don't yield a plugin description when an exception is thrown
    262         catch (FileNotFoundException) {
     262        catch (FileNotFoundException e) {
    263263        }
    264264        catch (FileLoadException) {
     
    468468        // if the dependency is already disabled we can ignore the cycle detection because we will disable the plugin anyway
    469469        // if following one of the dependencies recursively leads to a cycle then we also return
    470         if (dep == plugin || dep.PluginState == PluginState.Disabled || HasCycleInDependencies(plugin, dep.Dependencies)) return true;
     470        if (dep == plugin || dep.PluginState == PluginState.Disabled || HasCycleInDependencies(plugin, dep.Dependencies))
     471          return true;
    471472      }
    472473      // no cycle found and none of the direct and indirect dependencies is disabled
Note: See TracChangeset for help on using the changeset viewer.