Skip to content

Commit

Permalink
#4 Remove unused logging declarations
Browse files Browse the repository at this point in the history
  • Loading branch information
gary-rowe committed Apr 6, 2015
1 parent 2995a95 commit c44d163
Show file tree
Hide file tree
Showing 9 changed files with 0 additions and 40 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
import org.multibit.hd.hardware.core.events.HardwareWalletEventType;
import org.multibit.hd.hardware.core.events.HardwareWalletEvents;
import org.multibit.hd.hardware.core.events.MessageEvent;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
* <p>State to provide the following to hardware wallet clients:</p>
Expand All @@ -21,8 +19,6 @@
*/
public class ConfirmChangePINState extends AbstractHardwareWalletState {

private static final Logger log = LoggerFactory.getLogger(ConfirmChangePINState.class);

@Override
protected void internalTransition(HardwareWalletClient client, HardwareWalletContext context, MessageEvent event) {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
import org.multibit.hd.hardware.core.events.HardwareWalletEvents;
import org.multibit.hd.hardware.core.events.MessageEvent;
import org.multibit.hd.hardware.core.messages.CipheredKeyValue;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
* <p>State to provide the following to hardware wallet clients:</p>
Expand All @@ -23,8 +21,6 @@
*/
public class ConfirmCipherKeyState extends AbstractHardwareWalletState {

private static final Logger log = LoggerFactory.getLogger(ConfirmCipherKeyState.class);

@Override
protected void internalTransition(HardwareWalletClient client, HardwareWalletContext context, MessageEvent event) {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
import org.multibit.hd.hardware.core.events.HardwareWalletEventType;
import org.multibit.hd.hardware.core.events.HardwareWalletEvents;
import org.multibit.hd.hardware.core.events.MessageEvent;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
* <p>State to provide the following to hardware wallet clients:</p>
Expand All @@ -21,8 +19,6 @@
*/
public class ConfirmEntropyState extends AbstractHardwareWalletState {

private static final Logger log = LoggerFactory.getLogger(ConfirmEntropyState.class);

@Override
protected void internalTransition(HardwareWalletClient client, HardwareWalletContext context, MessageEvent event) {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
import org.multibit.hd.hardware.core.events.HardwareWalletEventType;
import org.multibit.hd.hardware.core.events.HardwareWalletEvents;
import org.multibit.hd.hardware.core.events.MessageEvent;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
* <p>State to provide the following to hardware wallet clients:</p>
Expand All @@ -20,8 +18,6 @@
*/
public class ConfirmLoadState extends AbstractHardwareWalletState {

private static final Logger log = LoggerFactory.getLogger(ConfirmLoadState.class);

@Override
protected void internalTransition(HardwareWalletClient client, HardwareWalletContext context, MessageEvent event) {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
import org.multibit.hd.hardware.core.events.HardwareWalletEventType;
import org.multibit.hd.hardware.core.events.HardwareWalletEvents;
import org.multibit.hd.hardware.core.events.MessageEvent;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
* <p>State to provide the following to hardware wallet clients:</p>
Expand All @@ -21,8 +19,6 @@
*/
public class ConfirmSignMessageState extends AbstractHardwareWalletState {

private static final Logger log = LoggerFactory.getLogger(ConfirmSignMessageState.class);

@Override
protected void internalTransition(HardwareWalletClient client, HardwareWalletContext context, MessageEvent event) {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
import org.multibit.hd.hardware.core.events.HardwareWalletEventType;
import org.multibit.hd.hardware.core.events.HardwareWalletEvents;
import org.multibit.hd.hardware.core.events.MessageEvent;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
* <p>State to provide the following to hardware wallet clients:</p>
Expand All @@ -20,8 +18,6 @@
*/
public class ConfirmWipeState extends AbstractHardwareWalletState {

private static final Logger log = LoggerFactory.getLogger(ConfirmWipeState.class);

@Override
protected void internalTransition(HardwareWalletClient client, HardwareWalletContext context, MessageEvent event) {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
package org.multibit.hd.hardware.core.fsm;

import org.multibit.hd.hardware.core.HardwareWalletClient;
import org.multibit.hd.hardware.core.events.HardwareWalletEventType;
import org.multibit.hd.hardware.core.events.HardwareWalletEvents;
import org.multibit.hd.hardware.core.events.MessageEvent;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
* <p>State to provide the following to hardware wallet clients:</p>
Expand All @@ -19,8 +15,6 @@
*/
public class DetachedState extends AbstractHardwareWalletState {

private static final Logger log = LoggerFactory.getLogger(DetachedState.class);

@Override
protected void internalTransition(HardwareWalletClient client, HardwareWalletContext context, MessageEvent event) {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
package org.multibit.hd.hardware.core.fsm;

import org.multibit.hd.hardware.core.HardwareWalletClient;
import org.multibit.hd.hardware.core.events.HardwareWalletEventType;
import org.multibit.hd.hardware.core.events.HardwareWalletEvents;
import org.multibit.hd.hardware.core.events.MessageEvent;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
* <p>State to provide the following to hardware wallet clients:</p>
Expand All @@ -19,8 +15,6 @@
*/
public class DisconnectedState extends AbstractHardwareWalletState {

private static final Logger log = LoggerFactory.getLogger(DisconnectedState.class);

@Override
protected void internalTransition(HardwareWalletClient client, HardwareWalletContext context, MessageEvent event) {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

import org.multibit.hd.hardware.core.HardwareWalletClient;
import org.multibit.hd.hardware.core.events.MessageEvent;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
* <p>State to provide the following to hardware wallet clients:</p>
Expand All @@ -19,8 +17,6 @@
*/
public class FailedState extends AbstractHardwareWalletState {

private static final Logger log = LoggerFactory.getLogger(FailedState.class);

@Override
protected void internalTransition(HardwareWalletClient client, HardwareWalletContext context, MessageEvent event) {

Expand Down

0 comments on commit c44d163

Please sign in to comment.