From: Kevin Wasserman Date: Mon, 17 Mar 2014 20:02:55 +0000 (-0400) Subject: Remove code to check for empty issuer and set to "Issuer" LP 1276627 X-Git-Tag: 0.7.1~14 X-Git-Url: http://www.project-moonshot.org/gitweb/?p=moonshot-ui.git;a=commitdiff_plain;h=fb652d391f5c5bd9addd56c485d2a931a4c87cd7 Remove code to check for empty issuer and set to "Issuer" LP 1276627 This was never correct behavior, but is now completely redundant since fixing the add identity dialog to require the user to specify issuer. --- diff --git a/src/moonshot-identity-management-view.vala b/src/moonshot-identity-management-view.vala index bcb0b8e..7ed3886 100644 --- a/src/moonshot-identity-management-view.vala +++ b/src/moonshot-identity-management-view.vala @@ -262,8 +262,6 @@ public class IdentityManagerView : Window { id_card.display_name = dialog.display_name; id_card.issuer = dialog.issuer; - if (id_card.issuer == "") - id_card.issuer = "Issuer"; id_card.username = dialog.username; id_card.password = dialog.password; id_card.store_password = dialog.store_password;