Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.PluginInfrastructure/PluginInfo.cs

    r2 r29  
    8383
    8484    public override int GetHashCode() {
    85       return name.GetHashCode() + version.GetHashCode();
     85      if(version != null) {
     86        return name.GetHashCode() + version.GetHashCode();
     87      } else return name.GetHashCode();
    8688    }
    8789  }
Note: See TracChangeset for help on using the changeset viewer.