Skip to content

Commit

Permalink
fix: Missing nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
samtrion committed Dec 19, 2024
1 parent 8de73cd commit c54cb4c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

public class ActiveMqOptions

Check warning on line 3 in src/NetEvolve.HealthChecks.Apache.ActiveMq/ActiveMqOptions.cs

View workflow job for this annotation

GitHub Actions / Build & Tests / CodeQL / Run CodeQL

Missing XML comment for publicly visible type or member 'ActiveMqOptions'

Check warning on line 3 in src/NetEvolve.HealthChecks.Apache.ActiveMq/ActiveMqOptions.cs

View workflow job for this annotation

GitHub Actions / Build & Tests / CodeQL / Run CodeQL

Missing XML comment for publicly visible type or member 'ActiveMqOptions'

Check failure on line 3 in src/NetEvolve.HealthChecks.Apache.ActiveMq/ActiveMqOptions.cs

View workflow job for this annotation

GitHub Actions / Build & Tests / Tests / Testing .NET solution

Missing XML comment for publicly visible type or member 'ActiveMqOptions'

Check failure on line 3 in src/NetEvolve.HealthChecks.Apache.ActiveMq/ActiveMqOptions.cs

View workflow job for this annotation

GitHub Actions / Build & Tests / Tests / Testing .NET solution

Missing XML comment for publicly visible type or member 'ActiveMqOptions'
{
public string BrokerAddress { get; set; }
public string? BrokerAddress { get; set; }

Check warning on line 5 in src/NetEvolve.HealthChecks.Apache.ActiveMq/ActiveMqOptions.cs

View workflow job for this annotation

GitHub Actions / Build & Tests / CodeQL / Run CodeQL

Missing XML comment for publicly visible type or member 'ActiveMqOptions.BrokerAddress'

Check warning on line 5 in src/NetEvolve.HealthChecks.Apache.ActiveMq/ActiveMqOptions.cs

View workflow job for this annotation

GitHub Actions / Build & Tests / CodeQL / Run CodeQL

Missing XML comment for publicly visible type or member 'ActiveMqOptions.BrokerAddress'

Check failure on line 5 in src/NetEvolve.HealthChecks.Apache.ActiveMq/ActiveMqOptions.cs

View workflow job for this annotation

GitHub Actions / Build & Tests / Tests / Testing .NET solution

Missing XML comment for publicly visible type or member 'ActiveMqOptions.BrokerAddress'
public string? Username

Check warning on line 6 in src/NetEvolve.HealthChecks.Apache.ActiveMq/ActiveMqOptions.cs

View workflow job for this annotation

GitHub Actions / Build & Tests / CodeQL / Run CodeQL

Missing XML comment for publicly visible type or member 'ActiveMqOptions.Username'

Check warning on line 6 in src/NetEvolve.HealthChecks.Apache.ActiveMq/ActiveMqOptions.cs

View workflow job for this annotation

GitHub Actions / Build & Tests / CodeQL / Run CodeQL

Missing XML comment for publicly visible type or member 'ActiveMqOptions.Username'

Check failure on line 6 in src/NetEvolve.HealthChecks.Apache.ActiveMq/ActiveMqOptions.cs

View workflow job for this annotation

GitHub Actions / Build & Tests / Tests / Testing .NET solution

Missing XML comment for publicly visible type or member 'ActiveMqOptions.Username'

Check failure on line 6 in src/NetEvolve.HealthChecks.Apache.ActiveMq/ActiveMqOptions.cs

View workflow job for this annotation

GitHub Actions / Build & Tests / Tests / Testing .NET solution

Make 'Username' a static property. (https://rules.sonarsource.com/csharp/RSPEC-2325)
{
get
Expand Down

0 comments on commit c54cb4c

Please sign in to comment.