diff options
author | Noel Grandin <noel@peralex.com> | 2014-12-19 16:03:41 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-01-05 08:23:29 +0200 |
commit | 43cc8ad33e815522e2b23ac87a4a9c4526cd85c9 (patch) | |
tree | b042266508f8b084bc7bbe9cc57250a971311099 /connectivity/org/hsqldb/lib | |
parent | cfcbe2e44e33f4a60e70006ff5e1cbb9aa2adceb (diff) |
java: remove dead code
found by UCDetector
Change-Id: I6b0f49529379072da566e927b86815f173e7a90b
Diffstat (limited to 'connectivity/org/hsqldb/lib')
-rw-r--r-- | connectivity/org/hsqldb/lib/FileSystemRuntimeException.java | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/connectivity/org/hsqldb/lib/FileSystemRuntimeException.java b/connectivity/org/hsqldb/lib/FileSystemRuntimeException.java index 5830d5eb48f2..6b3d289a6d4d 100644 --- a/connectivity/org/hsqldb/lib/FileSystemRuntimeException.java +++ b/connectivity/org/hsqldb/lib/FileSystemRuntimeException.java @@ -34,29 +34,8 @@ public class FileSystemRuntimeException extends java.lang.RuntimeException { public static final int fileAccessRemoveElementFailed = 1; public static final int fileAccessRenameElementFailed = 2; - private final int errorCode; - - public FileSystemRuntimeException(int _errorCode) { - super(); - errorCode = _errorCode; - } - - public FileSystemRuntimeException(String _message, int _errorCode) { - super(_message); - errorCode = _errorCode; - } - - public FileSystemRuntimeException(String _message, java.lang.Throwable _cause, int _errorCode) { - super(_message, _cause); - errorCode = _errorCode; - } - public FileSystemRuntimeException(java.lang.Throwable _cause, int _errorCode) { super(_cause); - errorCode = _errorCode; } - public final int getErrorCode() { - return errorCode; - } } |