Fixed imports
This commit is contained in:
parent
3d28493790
commit
afdba4ee51
7 changed files with 13 additions and 13 deletions
|
@ -6,8 +6,8 @@ package org.rometools.certiorem.hub;
|
|||
|
||||
import java.net.URL;
|
||||
|
||||
import org.rometools.fetcher.impl.FeedFetcherCache;
|
||||
import org.rometools.fetcher.impl.SyndFeedInfo;
|
||||
import com.rometools.fetcher.impl.FeedFetcherCache;
|
||||
import com.rometools.fetcher.impl.SyndFeedInfo;
|
||||
|
||||
/**
|
||||
* Wrapper FeedFetcherCache that wraps a backing FeedFetcherCache and makes sure
|
||||
|
|
|
@ -12,8 +12,7 @@ import java.util.HashMap;
|
|||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
import org.rometools.fetcher.impl.SyndFeedInfo;
|
||||
|
||||
import com.rometools.fetcher.impl.SyndFeedInfo;
|
||||
import com.sun.syndication.feed.synd.SyndEntry;
|
||||
import com.sun.syndication.feed.synd.SyndFeed;
|
||||
|
||||
|
|
|
@ -32,10 +32,10 @@ import org.rometools.certiorem.hub.Verifier.VerificationCallback;
|
|||
import org.rometools.certiorem.hub.data.HubDAO;
|
||||
import org.rometools.certiorem.hub.data.Subscriber;
|
||||
import org.rometools.certiorem.hub.data.SubscriptionSummary;
|
||||
import org.rometools.fetcher.FeedFetcher;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
||||
import com.rometools.fetcher.FeedFetcher;
|
||||
import com.sun.syndication.feed.synd.SyndFeed;
|
||||
|
||||
/**
|
||||
|
|
|
@ -34,11 +34,11 @@ import org.rometools.certiorem.sub.Requester.RequestCallback;
|
|||
import org.rometools.certiorem.sub.data.SubDAO;
|
||||
import org.rometools.certiorem.sub.data.Subscription;
|
||||
import org.rometools.certiorem.sub.data.SubscriptionCallback;
|
||||
import org.rometools.fetcher.impl.FeedFetcherCache;
|
||||
import org.rometools.fetcher.impl.SyndFeedInfo;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
||||
import com.rometools.fetcher.impl.FeedFetcherCache;
|
||||
import com.rometools.fetcher.impl.SyndFeedInfo;
|
||||
import com.sun.syndication.feed.synd.SyndFeed;
|
||||
import com.sun.syndication.feed.synd.SyndLink;
|
||||
import com.sun.syndication.io.FeedException;
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
package org.rometools.certiorem.sub.data;
|
||||
|
||||
import org.rometools.fetcher.impl.SyndFeedInfo;
|
||||
import com.rometools.fetcher.impl.SyndFeedInfo;
|
||||
|
||||
/**
|
||||
*
|
||||
|
|
|
@ -29,12 +29,13 @@ import org.junit.Test;
|
|||
import org.rometools.certiorem.HttpStatusCodeException;
|
||||
import org.rometools.certiorem.hub.data.HubDAO;
|
||||
import org.rometools.certiorem.hub.data.ram.InMemoryHubDAO;
|
||||
import org.rometools.fetcher.FeedFetcher;
|
||||
import org.rometools.fetcher.impl.HashMapFeedInfoCache;
|
||||
import org.rometools.fetcher.impl.HttpURLFeedFetcher;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
||||
import com.rometools.fetcher.FeedFetcher;
|
||||
import com.rometools.fetcher.impl.HashMapFeedInfoCache;
|
||||
import com.rometools.fetcher.impl.HttpURLFeedFetcher;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author robert.cooper
|
||||
|
|
|
@ -12,9 +12,9 @@ import java.util.List;
|
|||
|
||||
import org.junit.Before;
|
||||
import org.junit.Test;
|
||||
import org.rometools.fetcher.impl.HashMapFeedInfoCache;
|
||||
import org.rometools.fetcher.impl.HttpURLFeedFetcher;
|
||||
|
||||
import com.rometools.fetcher.impl.HashMapFeedInfoCache;
|
||||
import com.rometools.fetcher.impl.HttpURLFeedFetcher;
|
||||
import com.sun.syndication.feed.synd.SyndEntry;
|
||||
import com.sun.syndication.feed.synd.SyndFeed;
|
||||
|
||||
|
|
Loading…
Reference in a new issue