mirror of
https://github.com/github/codeql.git
synced 2026-03-29 11:48:16 +02:00
14 lines
198 B
C#
14 lines
198 B
C#
using System;
|
|
|
|
namespace NullAlways
|
|
{
|
|
class Bad
|
|
{
|
|
void DoPrint(string s)
|
|
{
|
|
if (s != null || s.Length > 0)
|
|
Console.WriteLine(s);
|
|
}
|
|
}
|
|
}
|