Last change
on this file since 17590 was
16116,
checked in by jkarder, 6 years ago
|
#2839: worked on hive project management
- fixed plugin dependencies
- fixed NullReferenceException in HiveTaskView
- added cloning ctor for AssignedJobResource and AssignedProjectResource
|
File size:
376 bytes
|
Rev | Line | |
---|
[16116] | 1 | using HeuristicLab.Common;
|
---|
| 2 |
|
---|
| 3 | namespace HeuristicLab.Clients.Hive {
|
---|
| 4 | public partial class AssignedJobResource : IDeepCloneable, IContent {
|
---|
| 5 | public AssignedJobResource() { }
|
---|
| 6 |
|
---|
| 7 | public AssignedJobResource(AssignedJobResource original, Cloner cloner) : base(original, cloner) {
|
---|
| 8 | ResourceId = original.ResourceId;
|
---|
| 9 | JobId = original.JobId;
|
---|
| 10 | }
|
---|
| 11 | }
|
---|
| 12 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.