diff --git a/VectoCommon/VectoCommon/Models/LegislativeClass.cs b/VectoCommon/VectoCommon/Models/LegislativeClass.cs index 098b5a053ef0f5dab59d2f5405c88b530c44208b..e3af3d4c16074dc81bd803cac38ad05def5bc080 100644 --- a/VectoCommon/VectoCommon/Models/LegislativeClass.cs +++ b/VectoCommon/VectoCommon/Models/LegislativeClass.cs @@ -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