Skip to content

Commit

Permalink
Nuke synthetic accessor methods.
Browse files Browse the repository at this point in the history
  • Loading branch information
vanniktech committed Nov 10, 2018
1 parent a9a8f91 commit 48259ad
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,12 @@ public final class BluetoothConnection {

private BluetoothSocket socket;

private InputStream inputStream;
InputStream inputStream;
private OutputStream outputStream;

private Flowable<Byte> observeInputStream;

private boolean connected = false;
boolean connected = false;

/**
* Container for simplifying read and write from/to {@link BluetoothSocket}.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@
* Enables clients to listen to bluetooth events using RxJava Observables.
*/
public final class RxBluetooth {
private BluetoothAdapter bluetoothAdapter;
private Context context;
BluetoothAdapter bluetoothAdapter;
Context context;

public RxBluetooth(Context context) {
this.bluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
Expand Down

0 comments on commit 48259ad

Please sign in to comment.