Skip to content

Commit

Permalink
GSAGH-550: can not be null
Browse files Browse the repository at this point in the history
  • Loading branch information
SandeepArup committed Dec 24, 2024
1 parent 6d00bbc commit 64932b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions GsaGH/Parameters/4_Analysis/GsaAnalysisCase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ namespace GsaGH.Parameters {
public class GsaAnalysisCase {
private AnalysisCase ApiCase { get; set; }
internal int Id { get; set; } = 0;
public string Definition => ApiCase?.Description;
public string Name => ApiCase?.Name;
public string Definition => ApiCase.Description;
public string Name => ApiCase.Name;
private GsaAnalysisCase() {
ApiCase = new AnalysisCase(string.Empty, string.Empty);
}
Expand Down

0 comments on commit 64932b5

Please sign in to comment.