diff options
| author | Keith Packard <keithp@keithp.com> | 2012-09-20 11:30:19 +0200 | 
|---|---|---|
| committer | Keith Packard <keithp@keithp.com> | 2012-09-20 11:30:19 +0200 | 
| commit | 2f2734bb418f5c3a89fa3f1bf1b98ce4cfe432e1 (patch) | |
| tree | 5a5400d13c22e7ca6c666c00f4d391ed8429e3a6 /altoslib/AltosLog.java | |
| parent | e69a433fd93b9f6bd2297d8045eb075fee29e73b (diff) | |
| parent | 3fe5c2f9fc01258d45c20070e9874d76bc6c8c07 (diff) | |
Merge remote-tracking branch 'mjb/altosdroid'
Diffstat (limited to 'altoslib/AltosLog.java')
| -rw-r--r-- | altoslib/AltosLog.java | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/altoslib/AltosLog.java b/altoslib/AltosLog.java index 3c124700..1c7069ce 100644 --- a/altoslib/AltosLog.java +++ b/altoslib/AltosLog.java @@ -25,7 +25,7 @@ import java.util.concurrent.LinkedBlockingQueue;   * This creates a thread to capture telemetry data and write it to   * a log file   */ -class AltosLog implements Runnable { +public class AltosLog implements Runnable {  	LinkedBlockingQueue<AltosLine>	input_queue;  	LinkedBlockingQueue<String>	pending_queue; @@ -45,7 +45,7 @@ class AltosLog implements Runnable {  		}  	} -	void close() { +	public void close() {  		close_log_file();  		if (log_thread != null) {  			log_thread.interrupt(); @@ -53,7 +53,7 @@ class AltosLog implements Runnable {  		}  	} -	File file() { +	public File file() {  		return file;  	} | 
