Skip to content

Commit

Permalink
organize imports
Browse files Browse the repository at this point in the history
  • Loading branch information
chenson42 committed Sep 28, 2009
1 parent eb1e64e commit c133a34
Show file tree
Hide file tree
Showing 8 changed files with 2 additions and 20 deletions.
Expand Up @@ -26,8 +26,6 @@
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.TreeSet;

import org.jumpmind.symmetric.common.ParameterConstants;
import org.jumpmind.symmetric.model.Channel;
Expand All @@ -38,7 +36,6 @@
import org.jumpmind.symmetric.model.NodeGroupLink;
import org.jumpmind.symmetric.service.IConfigurationService;
import org.jumpmind.symmetric.service.INodeService;
import org.jumpmind.symmetric.web.WebConstants;
import org.springframework.jdbc.core.RowMapper;

public class ConfigurationService extends AbstractService implements IConfigurationService {
Expand Down
Expand Up @@ -32,7 +32,6 @@
import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;

import org.apache.commons.io.IOUtils;
Expand Down Expand Up @@ -70,7 +69,6 @@
import org.jumpmind.symmetric.transport.file.FileOutgoingTransport;
import org.jumpmind.symmetric.upgrade.UpgradeConstants;
import org.jumpmind.symmetric.util.CsvUtils;
import org.jumpmind.symmetric.web.WebConstants;
import org.springframework.beans.BeansException;
import org.springframework.beans.factory.BeanFactory;
import org.springframework.beans.factory.BeanFactoryAware;
Expand Down
Expand Up @@ -27,11 +27,6 @@
import java.io.OutputStreamWriter;
import java.net.HttpURLConnection;
import java.net.URL;
import java.util.Arrays;
import java.util.HashMap;
import java.util.Map;
import java.util.Set;
import java.util.TreeSet;
import java.util.zip.GZIPOutputStream;

import javax.servlet.http.HttpServletResponse;
Expand Down
Expand Up @@ -29,8 +29,6 @@
import java.net.HttpURLConnection;
import java.net.URL;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.zip.GZIPInputStream;

import org.apache.commons.lang.StringUtils;
Expand Down
Expand Up @@ -22,6 +22,7 @@
package org.jumpmind.symmetric.web;

import java.io.IOException;

import javax.servlet.FilterChain;
import javax.servlet.ServletException;
import javax.servlet.ServletRequest;
Expand All @@ -32,7 +33,6 @@
import org.apache.commons.lang.StringUtils;
import org.jumpmind.symmetric.common.logging.ILog;
import org.jumpmind.symmetric.common.logging.LogFactory;

import org.jumpmind.symmetric.model.ChannelMap;
import org.jumpmind.symmetric.service.IConfigurationService;
import org.jumpmind.symmetric.transport.IConcurrentConnectionManager;
Expand Down
Expand Up @@ -29,7 +29,6 @@
import org.jumpmind.symmetric.model.NodeChannel;
import org.jumpmind.symmetric.service.IConfigurationService;
import org.jumpmind.symmetric.test.AbstractDatabaseTest;
import org.jumpmind.symmetric.web.WebConstants;
import org.junit.After;
import org.junit.Assert;
import org.junit.Before;
Expand Down
Expand Up @@ -347,7 +347,7 @@ public void syncUpdateCondition() {
// TODO: make sure event did not fire
}

@Test//(timeout = 30000)
@Test(timeout = 30000)
public void ignoreNodeChannel() {
logTestRunning();
INodeService rootNodeService = (INodeService) getRootEngine().getApplicationContext().getBean("nodeService");
Expand Down
Expand Up @@ -23,15 +23,10 @@
import java.io.BufferedWriter;
import java.io.IOException;
import java.io.StringWriter;
import java.util.HashMap;
import java.util.Map;
import java.util.Set;
import java.util.TreeSet;

import org.jumpmind.symmetric.model.ChannelMap;
import org.jumpmind.symmetric.service.IConfigurationService;
import org.jumpmind.symmetric.transport.IOutgoingTransport;
import org.jumpmind.symmetric.web.WebConstants;

public class MockOutgoingTransport implements IOutgoingTransport {

Expand Down

0 comments on commit c133a34

Please sign in to comment.