Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Commit 0186da26 authored by Michael KRISPER's avatar Michael KRISPER
Browse files

LegislativeClassHelper: Removed the nullable attribute.

parent 5615744f
No related branches found
No related tags found
No related merge requests found
......@@ -41,14 +41,8 @@ namespace TUGraz.VectoCommon.Models
public static class LegislativeClassHelper
{
public static string GetLabel(this LegislativeClass? self)
{
return self.ToString();
}
public static string GetLabel(this LegislativeClass self) => self.ToString();
public static string ToXMLFormat(this LegislativeClass? self)
{
return self.ToString();
}
public static string ToXMLFormat(this LegislativeClass? self) => self.ToString();
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment