diff options
author | Emil Ivov <emcho@jitsi.org> | 2009-03-28 10:38:21 +0000 |
---|---|---|
committer | Emil Ivov <emcho@jitsi.org> | 2009-03-28 10:38:21 +0000 |
commit | dd203da0cbe60008ac806d746a4d36bedb029d8f (patch) | |
tree | dab953f4f3d47d7b04ccfe7d522ef80823a84e7d /src/net/java/sip/communicator/plugin/googletalkaccregwizz/GoogleTalkAccountRegistrationWizard.java | |
parent | f88d080b3607a012f8a6e4aa2e0ebe1bdfc6cbc0 (diff) | |
download | jitsi-dd203da0cbe60008ac806d746a4d36bedb029d8f.zip jitsi-dd203da0cbe60008ac806d746a4d36bedb029d8f.tar.gz jitsi-dd203da0cbe60008ac806d746a4d36bedb029d8f.tar.bz2 |
Fixes raw type warnings
Diffstat (limited to 'src/net/java/sip/communicator/plugin/googletalkaccregwizz/GoogleTalkAccountRegistrationWizard.java')
-rw-r--r-- | src/net/java/sip/communicator/plugin/googletalkaccregwizz/GoogleTalkAccountRegistrationWizard.java | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/net/java/sip/communicator/plugin/googletalkaccregwizz/GoogleTalkAccountRegistrationWizard.java b/src/net/java/sip/communicator/plugin/googletalkaccregwizz/GoogleTalkAccountRegistrationWizard.java index 9288921..0155185 100644 --- a/src/net/java/sip/communicator/plugin/googletalkaccregwizz/GoogleTalkAccountRegistrationWizard.java +++ b/src/net/java/sip/communicator/plugin/googletalkaccregwizz/GoogleTalkAccountRegistrationWizard.java @@ -119,9 +119,10 @@ public class GoogleTalkAccountRegistrationWizard * Returns the set of data that user has entered through this wizard.
* @return Iterator
*/
- public Iterator<Map.Entry> getSummary()
+ public Iterator<Map.Entry<String, String>> getSummary()
{
- Hashtable summaryTable = new Hashtable();
+ Hashtable<String, String> summaryTable
+ = new Hashtable<String, String>();
summaryTable.put(
Resources.getString("plugin.googletalkaccregwizz.USERNAME"),
@@ -129,7 +130,7 @@ public class GoogleTalkAccountRegistrationWizard summaryTable.put(
Resources.getString("service.gui.REMEMBER_PASSWORD"),
- new Boolean(registration.isRememberPassword()));
+ Boolean.toString(registration.isRememberPassword()));
summaryTable.put(
Resources.getString("plugin.jabberaccregwizz.SERVER"),
|