From 04b9138a5369120204d10622b26a8b7f14035b16 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miskolczi=20Rich=C3=A1rd?= Date: Tue, 28 Mar 2023 12:54:27 +0200 Subject: [PATCH] 'not all code paths return a value' --- Password Manager/PasswordGenerator.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Password Manager/PasswordGenerator.cs b/Password Manager/PasswordGenerator.cs index 74bef48..12c27ac 100644 --- a/Password Manager/PasswordGenerator.cs +++ b/Password Manager/PasswordGenerator.cs @@ -59,8 +59,8 @@ namespace Password_Generator catch (Exception ex) { MessageBox.Show(ex.ToString(), "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); - return null; } + return null; } } }