File tree Expand file tree Collapse file tree 1 file changed +0
-6
lines changed
Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -45,9 +45,6 @@ public DateTime Begin
4545 {
4646 _appState . ExportParameters = _appState . ExportParameters with { Begin = DateTime . SpecifyKind ( value , DateTimeKind . Utc ) } ;
4747
48- if ( _appState . ExportParameters . Begin >= _appState . ExportParameters . End )
49- _appState . ExportParameters = _appState . ExportParameters with { End = _appState . ExportParameters . Begin } ;
50-
5148 PropertyChanged ? . Invoke ( this , new PropertyChangedEventArgs ( nameof ( Begin ) ) ) ;
5249 CanExportChanged ( ) ;
5350 CanVisualizeChanged ( ) ;
@@ -64,9 +61,6 @@ public DateTime End
6461 {
6562 _appState . ExportParameters = _appState . ExportParameters with { End = DateTime . SpecifyKind ( value , DateTimeKind . Utc ) } ;
6663
67- if ( _appState . ExportParameters . End <= _appState . ExportParameters . Begin )
68- _appState . ExportParameters = _appState . ExportParameters with { Begin = _appState . ExportParameters . End } ;
69-
7064 PropertyChanged ? . Invoke ( this , new PropertyChangedEventArgs ( nameof ( End ) ) ) ;
7165 CanExportChanged ( ) ;
7266 CanVisualizeChanged ( ) ;
You can’t perform that action at this time.
0 commit comments