Changeset 7201 for trunk/sources/HeuristicLab.Problems.ExternalEvaluation
- Timestamp:
- 12/19/11 03:17:35 (13 years ago)
- Location:
- trunk/sources/HeuristicLab.Problems.ExternalEvaluation/3.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.ExternalEvaluation/3.3/EvaluationCache.cs
r6519 r7201 86 86 87 87 #region Properties 88 public override System.Drawing.ImageItemImage {88 public static new System.Drawing.Image StaticItemImage { 89 89 get { return VSImageLibrary.Database; } 90 90 } … … 220 220 index[entry] = list.AddLast(entry); 221 221 Trim(); 222 } finally { 222 } 223 finally { 223 224 if (!lockTaken) 224 225 Monitor.Enter(cacheLock, ref lockTaken); … … 233 234 } 234 235 } 235 } finally { 236 } 237 finally { 236 238 if (lockTaken) 237 239 Monitor.Exit(cacheLock); -
trunk/sources/HeuristicLab.Problems.ExternalEvaluation/3.3/ExternalEvaluationProblem.cs
r6189 r7201 41 41 public string Filename { get; set; } 42 42 43 public override ImageItemImage {43 public static new Image StaticItemImage { 44 44 get { return HeuristicLab.Common.Resources.VSImageLibrary.Type; } 45 45 }
Note: See TracChangeset
for help on using the changeset viewer.