Remove unused Logger fields

... note that *View classes now all inherit a protected Logger instance,
so redeclaring in each class is no longer necessary.
This commit is contained in:
Chris Beams 2014-11-23 05:36:17 +01:00
parent a392d78fc2
commit 0e0cbde27f
No known key found for this signature in database
GPG key ID: 3D214F8F5BC5ED73
50 changed files with 3 additions and 219 deletions

View file

@ -32,13 +32,9 @@ import java.util.Locale;
import org.junit.Before;
import org.junit.Test;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import static org.junit.Assert.*;
public class CreateOfferViewModelTest {
private static final Logger log = LoggerFactory.getLogger(CreateOfferViewModelTest.class);
private CreateOfferDataModel model;
private CreateOfferViewModel presenter;

View file

@ -25,13 +25,9 @@ import java.util.Locale;
import org.junit.Test;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import static org.junit.Assert.*;
public class BSFormatterTest {
private static final Logger log = LoggerFactory.getLogger(BSFormatterTest.class);
@Test
public void testParseToBtc() {

View file

@ -43,9 +43,6 @@ import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import static org.junit.Assert.*;
// TODO Reactivate tests when TomP2PNode is using original code again. we deactivated the security features atm.
@ -53,7 +50,6 @@ import static org.junit.Assert.*;
// investigate what has broken it, probably from update to latest head
@Ignore
public class TomP2PNodeTest {
private static final Logger log = LoggerFactory.getLogger(TomP2PNodeTest.class);
final private static Random rnd = new Random(42L);