Skip to content

Commit

Permalink
[CodeFactor] Apply fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
code-factor committed Jun 18, 2024
1 parent d956576 commit e62297c
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions source/EduCATS/Helpers/Forms/Dialogs/AppDialogs.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using System.Windows.Input;
Expand Down Expand Up @@ -64,7 +64,6 @@ public void ShowError(string message) =>
public void ShowMessage(string title, string message) =>
mainPage.DisplayAlert(title, message, _baseOK);


/// <summary>
/// Show message dialog.
/// </summary>
Expand Down Expand Up @@ -166,7 +165,6 @@ public async Task<bool> ShowConfirmationMessage(string title, string message) =>
/// </summary>
/// <param name="title">Dialog title.</param>
/// <param name="message">Dialog description.</param>

public async Task ShowConfirmation(string title, string message) =>
await mainPage.DisplayAlert(title, message, _baseOK);

Expand Down

0 comments on commit e62297c

Please sign in to comment.