added throws clause to initialize and close as specified by the interface

Former-commit-id: 4a081a980f370513f54c23e6a6d2c2c41c0ff200
This commit is contained in:
Jeremy Long
2013-06-07 22:24:01 -04:00
parent 9d7122d69c
commit 5bbee94d68

View File

@@ -48,14 +48,14 @@ public abstract class AbstractAnalyzer implements Analyzer {
/** /**
* The initialize method does nothing for this Analyzer. * The initialize method does nothing for this Analyzer.
*/ */
public void initialize() { public void initialize() throws Exception {
//do nothing //do nothing
} }
/** /**
* The close method does nothing for this Analyzer. * The close method does nothing for this Analyzer.
*/ */
public void close() { public void close() throws Exception {
//do nothing //do nothing
} }
} }