summaryrefslogtreecommitdiff
path: root/sources/protocols
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2008-05-17 15:04:10 +0000
committerPaul Buetow <paul@buetow.org>2008-05-17 15:04:10 +0000
commit44f91eeef89cc8e8e2039b243c3be277bca4f2ad (patch)
treea79a0366e083b1b81cbde10be4b3183496c75ab2 /sources/protocols
parentab22e4430cc3dc752ad8980fdfabb44e1acda8e8 (diff)
Renamed RegisteredProtocols into VSRegisteredProtocols
Diffstat (limited to 'sources/protocols')
-rw-r--r--sources/protocols/VSProtocol.java4
-rw-r--r--sources/protocols/VSRegisteredProtocols.java (renamed from sources/protocols/RegisteredProtocols.java)2
2 files changed, 3 insertions, 3 deletions
diff --git a/sources/protocols/VSProtocol.java b/sources/protocols/VSProtocol.java
index 4f34195..7154c78 100644
--- a/sources/protocols/VSProtocol.java
+++ b/sources/protocols/VSProtocol.java
@@ -31,7 +31,7 @@ abstract public class VSProtocol extends VSPrefs implements VSEvent {
}
public final String getProtocolName() {
- return RegisteredProtocols.getProtocolName(protocolClassname);
+ return VSRegisteredProtocols.getProtocolName(protocolClassname);
}
public final VSProcess getProcess() {
@@ -121,6 +121,6 @@ abstract public class VSProtocol extends VSPrefs implements VSEvent {
type += prefs.getString("lang.client");
return prefs.getString("lang.protocol") + ": "
- + RegisteredProtocols.getProtocolName(getProtocolClassname()) + " " + type;// + "; ID: " + getID();
+ + VSRegisteredProtocols.getProtocolName(getProtocolClassname()) + " " + type;// + "; ID: " + getID();
}
}
diff --git a/sources/protocols/RegisteredProtocols.java b/sources/protocols/VSRegisteredProtocols.java
index b08bb87..5153a07 100644
--- a/sources/protocols/RegisteredProtocols.java
+++ b/sources/protocols/VSRegisteredProtocols.java
@@ -6,7 +6,7 @@ import prefs.*;
import core.*;
import utils.*;
-public final class RegisteredProtocols {
+public final class VSRegisteredProtocols {
private static HashMap<String,String> protocolClassnames;
private static HashMap<String,String> protocolNames;
private static VSPrefs prefs;