Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/11/21 13:05:27 (3 years ago)
Author:
dpiringe
Message:

#3026

  • code cleanup
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface/JsonItems/UnsupportedJsonItem.cs

    r17828 r18043  
    66namespace HeuristicLab.JsonInterface {
    77  public class UnsupportedJsonItem : JsonItem {
    8     /*
    9     public override string Name {
    10       get => throw new NotSupportedException();
    11       set => throw new NotSupportedException();
    12     }
    13 
    14     public override string Description { // TODO
    15       get => throw new NotSupportedException();
    16       set => throw new NotSupportedException();
    17     }
    18 
    19     public override string Path {
    20       get => throw new NotSupportedException();
    21     }
    22     */
    238
    249    [JsonIgnore]
     
    2712      protected set => throw new NotSupportedException();
    2813    }
    29     /*
    30     [JsonIgnore]
    31     public override IJsonItem Parent {
    32       get => throw new NotSupportedException();
    33       set => throw new NotSupportedException();
    34     }
    35     */
     14
    3615    protected override ValidationResult Validate() => ValidationResult.Successful();
    3716  }
Note: See TracChangeset for help on using the changeset viewer.