'not all code paths return a value'

This commit is contained in:
2023-03-28 12:54:27 +02:00
parent 88c7a1bc16
commit 04b9138a53

View File

@@ -59,8 +59,8 @@ namespace Password_Generator
catch (Exception ex) catch (Exception ex)
{ {
MessageBox.Show(ex.ToString(), "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); MessageBox.Show(ex.ToString(), "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
return null; return null;
} }
} }
} }
}