Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
HZN-452: Reorganize imports to keep diffs minimal.
  • Loading branch information
Markus von Rüden committed Sep 2, 2015
1 parent 5154836 commit 989f8bb
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 25 deletions.
Expand Up @@ -28,15 +28,15 @@

package org.opennms.core.test;

import junit.framework.AssertionFailedError;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.util.Collections;
import java.util.LinkedList;
import java.util.List;
import java.util.Properties;

import junit.framework.AssertionFailedError;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
* <p>MockLogAppender class. If you do not specify the log level specifically, the level
* will default to DEBUG and you can control the level by setting the <code>mock.logLevel</code>
Expand Down
Expand Up @@ -28,6 +28,10 @@

package org.opennms.netmgt.measurements.api;

import java.util.Collection;
import java.util.LinkedHashMap;
import java.util.Map;

import com.google.common.base.Function;
import com.google.common.base.Preconditions;
import com.google.common.collect.Collections2;
Expand All @@ -36,10 +40,6 @@
import org.apache.commons.lang.ArrayUtils;
import org.opennms.netmgt.jasper.analytics.Filter;

import java.util.Collection;
import java.util.LinkedHashMap;
import java.util.Map;

/**
* Used to store the results of a fetch.
*
Expand Down
Expand Up @@ -28,6 +28,23 @@

package org.opennms.web.rest.v1;

import java.util.Date;
import java.util.List;
import java.util.Map;
import javax.annotation.Resource;
import javax.ws.rs.Consumes;
import javax.ws.rs.DefaultValue;
import javax.ws.rs.GET;
import javax.ws.rs.POST;
import javax.ws.rs.Path;
import javax.ws.rs.PathParam;
import javax.ws.rs.Produces;
import javax.ws.rs.QueryParam;
import javax.ws.rs.WebApplicationException;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.Response;
import javax.ws.rs.core.Response.Status;

import com.google.common.base.Preconditions;
import com.google.common.collect.Lists;
import com.google.common.collect.RowSortedTable;
Expand All @@ -51,23 +68,6 @@
import org.springframework.stereotype.Component;
import org.springframework.transaction.annotation.Transactional;

import javax.annotation.Resource;
import javax.ws.rs.Consumes;
import javax.ws.rs.DefaultValue;
import javax.ws.rs.GET;
import javax.ws.rs.POST;
import javax.ws.rs.Path;
import javax.ws.rs.PathParam;
import javax.ws.rs.Produces;
import javax.ws.rs.QueryParam;
import javax.ws.rs.WebApplicationException;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.Response;
import javax.ws.rs.core.Response.Status;
import java.util.Date;
import java.util.List;
import java.util.Map;

/**
* The Measurements API provides read-only access to values
* persisted by the collectors.
Expand Down

0 comments on commit 989f8bb

Please sign in to comment.