fix linting errors
This commit is contained in:
@@ -2,9 +2,9 @@
|
||||
|
||||
public class HelloWorldProvider
|
||||
{
|
||||
public string GetHelloWorld(string name = null)
|
||||
public string GetHelloWorld(string? name = null)
|
||||
{
|
||||
if(string.IsNullOrEmpty(name))
|
||||
if (string.IsNullOrEmpty(name))
|
||||
{
|
||||
return "Hello world!";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user