Skip to content

Commit

Permalink
Fixed import ordering.
Browse files Browse the repository at this point in the history
  • Loading branch information
conor10 committed Sep 6, 2017
1 parent aa45fd3 commit b539485
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions src/main/java/org/web3j/protocol/core/filters/Filter.java
Original file line number Diff line number Diff line change
@@ -1,12 +1,5 @@
package org.web3j.protocol.core.filters;

import org.web3j.protocol.Web3j;
import org.web3j.protocol.core.Request;
import org.web3j.protocol.core.Response;
import org.web3j.protocol.core.methods.response.EthFilter;
import org.web3j.protocol.core.methods.response.EthLog;
import org.web3j.protocol.core.methods.response.EthUninstallFilter;

import java.io.IOException;
import java.math.BigInteger;
import java.util.Collections;
Expand All @@ -16,6 +9,12 @@
import java.util.concurrent.ScheduledFuture;
import java.util.concurrent.TimeUnit;

import org.web3j.protocol.Web3j;
import org.web3j.protocol.core.Request;
import org.web3j.protocol.core.Response;
import org.web3j.protocol.core.methods.response.EthFilter;
import org.web3j.protocol.core.methods.response.EthLog;
import org.web3j.protocol.core.methods.response.EthUninstallFilter;

/**
* Class for creating managed filter requests with callbacks.
Expand Down

0 comments on commit b539485

Please sign in to comment.