Skip to content

Commit

Permalink
ae.net.irc.client: Fix password field being private
Browse files Browse the repository at this point in the history
  • Loading branch information
CyberShadow committed Feb 18, 2015
1 parent 91f0a68 commit c786894
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions net/irc/client.d
Expand Up @@ -37,8 +37,6 @@ private:
IrcConnection conn;
/// Whether the socket is connected
bool _connected;
/// The password used when logging in.
string password;

/// Helper function for sending a command.
void command(string command, string[] params ...)
Expand Down Expand Up @@ -504,6 +502,8 @@ protected: // overridable methods
public:
/// The user's information.
string nickname, realname;
/// The password used when logging in.
string password;
/// A list of joined channels.
Channel[string] channels;
/// Canonical names
Expand Down

0 comments on commit c786894

Please sign in to comment.