Skip to content

Commit b6c8506

Browse files
Copilotrenemadsen
andcommitted
Add #nullable enable directive to fix CS8632 warnings
Co-authored-by: renemadsen <[email protected]>
1 parent 525871a commit b6c8506

File tree

5 files changed

+5
-0
lines changed

5 files changed

+5
-0
lines changed

eFormAPI/Plugins/TimePlanning.Pn/TimePlanning.Pn/Controllers/TimePlanningPlanningController.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1818
SOFTWARE.
1919
*/
2020

21+
#nullable enable
2122
namespace TimePlanning.Pn.Controllers;
2223

2324
using System.Collections.Generic;

eFormAPI/Plugins/TimePlanning.Pn/TimePlanning.Pn/Controllers/TimePlanningWorkingHoursController.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1818
SOFTWARE.
1919
*/
2020

21+
#nullable enable
2122
using System;
2223
using System.Text;
2324
using Microsoft.AspNetCore.Authorization;

eFormAPI/Plugins/TimePlanning.Pn/TimePlanning.Pn/Services/TimePlanningPlanningService/ITimePlanningPlanningService.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2222
SOFTWARE.
2323
*/
2424

25+
#nullable enable
2526
namespace TimePlanning.Pn.Services.TimePlanningPlanningService;
2627

2728
using System.Collections.Generic;

eFormAPI/Plugins/TimePlanning.Pn/TimePlanning.Pn/Services/TimePlanningPlanningService/TimePlanningPlanningService.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2222
SOFTWARE.
2323
*/
2424

25+
#nullable enable
2526
using System.Text.RegularExpressions;
2627
using Microting.EformAngularFrontendBase.Infrastructure.Data;
2728
using Microting.eFormApi.BasePn.Infrastructure.Helpers.PluginDbOptions;

eFormAPI/Plugins/TimePlanning.Pn/TimePlanning.Pn/Services/TimePlanningWorkingHoursService/ITimePlanningWorkingHoursService.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1818
SOFTWARE.
1919
*/
2020

21+
#nullable enable
2122
using System;
2223
using System.IO;
2324
using Microsoft.AspNetCore.Http;

0 commit comments

Comments
 (0)