From ef2ee6e43f88f780480b2c0ac6e0e9b7cd6b8f0a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miskolczi=20Rich=C3=A1rd?= Date: Tue, 28 Mar 2023 13:30:14 +0200 Subject: [PATCH] Return was is the wrong place --- 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 27a93f9..9fda065 100644 --- a/Password Manager/PasswordGenerator.cs +++ b/Password Manager/PasswordGenerator.cs @@ -53,8 +53,8 @@ namespace Password_Generator while (!proc.StandardOutput.EndOfStream) { builder.Append(proc.StandardOutput.ReadLine()); - return builder.ToString(); } + return builder.ToString(); } catch (Exception ex) {