changeset 1282:2531942abaf3

minor
author Franklin Schmidt <fschmidt@gmail.com>
date Thu, 20 Dec 2018 17:44:34 -0700
parents 7fc83fd2a39a
children 503bde9a7c80
files src/luan/LuanException.java
diffstat 1 files changed, 1 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/src/luan/LuanException.java	Thu Dec 20 14:09:19 2018 -0700
+++ b/src/luan/LuanException.java	Thu Dec 20 17:44:34 2018 -0700
@@ -22,12 +22,8 @@
 		super(cause);
 	}
 
-	private LuanException(String msg,Throwable cause,int nonsense) {
-		super(msg,cause);
-	}
-
 	@Override public LuanException shallowClone() {
-		return new LuanException(getMessage(),getCause(),99);
+		return new LuanException(getMessage(),getCause());
 	}
 
 	@Override public void deepenClone(LuanCloneable dc,LuanCloner cloner) {