Browse Source

Removed 'static' from toString and toFullString methods...

git-svn-id: http://svn.dmdirc.com/trunk@118 00569f92-eb28-0410-84fd-f71c24880f
tags/0.1
Chris Smith 17 years ago
parent
commit
1474f60726
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      src/uk/org/ownage/dmdirc/parser/ChannelClientInfo.java

+ 2
- 2
src/uk/org/ownage/dmdirc/parser/ChannelClientInfo.java View File

@@ -127,14 +127,14 @@ public class ChannelClientInfo {
127 127
 	 *
128 128
 	 * @return String Value of user (inc prefix) (ie @Nickname)
129 129
 	 */
130
-	public static String toString() { return this.getChanModeStr(true).charAt(0)+this.getNickname(); }	
130
+	public String toString() { return this.getChanModeStr(true).charAt(0)+this.getNickname(); }	
131 131
 	
132 132
 	/**
133 133
 	 * Get the "Complete" String Value of ChannelClientInfo (ie @+Nickname).
134 134
 	 *
135 135
 	 * @return String Value of user (inc prefix) (ie @+Nickname)
136 136
 	 */
137
-	public static String toFullString() { return this.getChanModeStr(true)+this.getNickname(); }	
137
+	public String toFullString() { return this.getChanModeStr(true)+this.getNickname(); }	
138 138
 	
139 139
 	/**
140 140
 	 * Get SVN Version information

Loading…
Cancel
Save