aboutsummaryrefslogtreecommitdiffstats
path: root/src/net/java/sip/communicator/impl/googlecontacts/GoogleContactsEntryImpl.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/java/sip/communicator/impl/googlecontacts/GoogleContactsEntryImpl.java')
-rw-r--r--src/net/java/sip/communicator/impl/googlecontacts/GoogleContactsEntryImpl.java18
1 files changed, 4 insertions, 14 deletions
diff --git a/src/net/java/sip/communicator/impl/googlecontacts/GoogleContactsEntryImpl.java b/src/net/java/sip/communicator/impl/googlecontacts/GoogleContactsEntryImpl.java
index d4d2ed5..cf42720 100644
--- a/src/net/java/sip/communicator/impl/googlecontacts/GoogleContactsEntryImpl.java
+++ b/src/net/java/sip/communicator/impl/googlecontacts/GoogleContactsEntryImpl.java
@@ -43,20 +43,14 @@ public class GoogleContactsEntryImpl
/**
* Google Talk protocol type.
*/
- private static final String YAHOO_PROTOCOL =
- "http://schemas.google.com/g/2005#YAHOO";
-
- /**
- * Google Talk protocol type.
- */
private static final String AIM_PROTOCOL =
"http://schemas.google.com/g/2005#AIM";
/**
* Google Talk protocol type.
*/
- private static final String MSN_PROTOCOL =
- "http://schemas.google.com/g/2005#MSN";
+ private static final String SKYPE_PROTOCOL =
+ "http://schemas.google.com/g/2005#SKYPE";
/**
* Google Talk protocol type.
@@ -432,17 +426,13 @@ public class GoogleContactsEntryImpl
{
proto = GoogleContactsEntry.IMProtocol.GOOGLETALK;
}
- else if(protocol.equals(YAHOO_PROTOCOL))
- {
- proto = GoogleContactsEntry.IMProtocol.YAHOO;
- }
else if(protocol.equals(AIM_PROTOCOL))
{
proto = GoogleContactsEntry.IMProtocol.AIM;
}
- else if(protocol.equals(MSN_PROTOCOL))
+ else if(protocol.equals(SKYPE_PROTOCOL))
{
- proto = GoogleContactsEntry.IMProtocol.MSN;
+ proto = GoogleContactsEntry.IMProtocol.SKYPE;
}
else if(protocol.equals(ICQ_PROTOCOL))
{