Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/04/11 15:53:02 (12 years ago)
Author:
gkronber
Message:

#1329: added a solution file, added missing overrides for GetHashCode(), removed tautological if-conditions, adapted prebuildevent script and added the build script

Location:
branches/Scheduling
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/Scheduling

    • Property svn:ignore
      •  

        old new  
        1212*.psess
        1313*.vsp
         14_ReSharper.HeuristicLab.Scheduling
         15*.user
  • branches/Scheduling/HeuristicLab.Encodings.ScheduleEncoding/3.3/ScheduleEncoding/Job.cs

    r6475 r7116  
    5252      Tasks = new ItemList<Task>();
    5353
    54       if (dueDate != null)
    55         DueDate = dueDate;
     54      DueDate = dueDate;
    5655
    5756    }
     
    6362        sb.Append(t.ToString() + " ");
    6463      }
    65       if (DueDate != null)
    66         sb.Append("{" + DueDate + "} ");
     64      sb.Append("{" + DueDate + "} ");
    6765      sb.Append("]");
    6866      return sb.ToString();
Note: See TracChangeset for help on using the changeset viewer.