diff options
| author | Bdale Garbee <bdale@gag.com> | 2014-02-13 21:54:46 -0700 | 
|---|---|---|
| committer | Bdale Garbee <bdale@gag.com> | 2014-02-13 21:54:46 -0700 | 
| commit | e77c24aaaff12669ca6970dfcca770671387f59c (patch) | |
| tree | c8929f4a71290e3a3c3b6d717788ae1837b2dffa /micropeak/MicroData.java | |
| parent | 85974eadfde6103d297498ee8c4268e28ab008ba (diff) | |
| parent | bf268354535a3a7b2e093235e5347ed2a6d809ff (diff) | |
Merge branch 'branch-1.3' into debian
Diffstat (limited to 'micropeak/MicroData.java')
| -rw-r--r-- | micropeak/MicroData.java | 22 | 
1 files changed, 8 insertions, 14 deletions
| diff --git a/micropeak/MicroData.java b/micropeak/MicroData.java index 04e9ad32..e786ff1e 100644 --- a/micropeak/MicroData.java +++ b/micropeak/MicroData.java @@ -100,13 +100,13 @@ public class MicroData implements AltosUIDataSet {  	String			name;  	MicroStats		stats; -	class FileEndedException extends Exception { +	public class FileEndedException extends Exception {  	} -	class NonHexcharException extends Exception { +	public class NonHexcharException extends Exception {  	} -	class InvalidCrcException extends Exception { +	public class InvalidCrcException extends Exception {  	}  	private int getc(InputStream f) throws IOException, FileEndedException { @@ -167,14 +167,10 @@ public class MicroData implements AltosUIDataSet {  		return h;  	} -	private boolean find_header(InputStream f) throws IOException { -		try { -			for (;;) { -				if (get_nonwhite(f) == 'M' && get_nonwhite(f) == 'P') -					return true; -			} -		} catch (FileEndedException fe) { -			return false; +	private boolean find_header(InputStream f) throws IOException, FileEndedException { +		for (;;) { +			if (get_nonwhite(f) == 'M' && get_nonwhite(f) == 'P') +				return true;  		}  	}  @@ -339,7 +335,7 @@ public class MicroData implements AltosUIDataSet {  		this.name = name;  	} -	public MicroData (InputStream f, String name) throws IOException, InterruptedException { +	public MicroData (InputStream f, String name) throws IOException, InterruptedException, NonHexcharException, FileEndedException {  		this.name = name;  		bytes = new ArrayList<Integer>();  		if (!find_header(f)) @@ -384,8 +380,6 @@ public class MicroData implements AltosUIDataSet {  			stats = new MicroStats(this);  		} catch (FileEndedException fe) {  			throw new IOException("File Ended Unexpectedly"); -		} catch (NonHexcharException ne) { -			throw new IOException("Non hexadecimal character found");  		}  	} | 
