mirror of
https://github.com/vanitasvitae/Smack.git
synced 2025-09-10 17:49:38 +02:00
SMACK-363 Applied code cleanup patches for many generics related issues.
git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@13325 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
parent
6dc64671e2
commit
e08c8afe44
109 changed files with 577 additions and 605 deletions
|
@ -10,7 +10,6 @@ import org.jivesoftware.smackx.packet.DiscoverInfo;
|
|||
import org.jivesoftware.smackx.packet.DiscoverItems;
|
||||
import org.jivesoftware.smackx.packet.DiscoverInfo.Identity;
|
||||
import org.jivesoftware.smackx.pubsub.test.SingleUserTestCase;
|
||||
import org.jivesoftware.smackx.pubsub.util.XmlUtils;
|
||||
|
||||
public class EntityUseCases extends SingleUserTestCase
|
||||
{
|
||||
|
@ -41,7 +40,7 @@ public class EntityUseCases extends SingleUserTestCase
|
|||
|
||||
int count = 0;
|
||||
|
||||
for(Iterator it = items.getItems(); it.hasNext(); it.next(),count++);
|
||||
for(Iterator<DiscoverItems.Item> it = items.getItems(); it.hasNext(); it.next(),count++);
|
||||
|
||||
assertEquals(4, count);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue