aboutsummaryrefslogtreecommitdiffstats
path: root/src/net/java/sip/communicator/plugin/rssaccregwizz/RssAccountRegistrationWizard.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/java/sip/communicator/plugin/rssaccregwizz/RssAccountRegistrationWizard.java')
-rw-r--r--src/net/java/sip/communicator/plugin/rssaccregwizz/RssAccountRegistrationWizard.java10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/net/java/sip/communicator/plugin/rssaccregwizz/RssAccountRegistrationWizard.java b/src/net/java/sip/communicator/plugin/rssaccregwizz/RssAccountRegistrationWizard.java
index e1783c1..643e9f4 100644
--- a/src/net/java/sip/communicator/plugin/rssaccregwizz/RssAccountRegistrationWizard.java
+++ b/src/net/java/sip/communicator/plugin/rssaccregwizz/RssAccountRegistrationWizard.java
@@ -118,9 +118,10 @@ public class RssAccountRegistrationWizard
* 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("User ID", registration.getUserID());
@@ -166,11 +167,12 @@ public class RssAccountRegistrationWizard
throws OperationFailedException
{
- Hashtable accountProperties = new Hashtable();
+ Hashtable<String, String> accountProperties
+ = new Hashtable<String, String>();
accountProperties.put(
ProtocolProviderFactory.NO_PASSWORD_REQUIRED,
- new Boolean(true).toString());
+ Boolean.toString(true));
try
{