Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/16/19 23:12:05 (5 years ago)
Author:
gkronber
Message:

#2520: removed usages of AllowOneWay

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/HeuristicLab.Analysis/3.3/DataVisualization/DataRowVisualProperties.cs

    r16565 r16796  
    227227    internal DataRowHistogramAggregation? Aggregation { get; private set; }
    228228
    229     [Storable(Name = "Bins", AllowOneWay = true)]
     229    [Storable(OldName = "Bins")]
    230230    private int StorableBins { set { Bins = value; } }
    231     [Storable(Name = "ExactBins", AllowOneWay = true)]
     231    [Storable(OldName = "ExactBins")]
    232232    private bool StorableExactBins { set { ExactBins = value; } }
    233     [Storable(Name = "Aggregation", AllowOneWay = true)]
     233    [Storable(OldName = "Aggregation")]
    234234    private DataRowHistogramAggregation StorableAggregation { set { Aggregation = value; } }
    235235    #endregion
Note: See TracChangeset for help on using the changeset viewer.