From 4495e56e52a6f2e0fb904202e7217bf573b0652b Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Mon, 17 Dec 2007 19:46:28 +0000 Subject: [PATCH] Another type clarification. --- src/java/com/samskivert/jdbc/depot/FieldMarshaller.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/java/com/samskivert/jdbc/depot/FieldMarshaller.java b/src/java/com/samskivert/jdbc/depot/FieldMarshaller.java index e989eae..2358f58 100644 --- a/src/java/com/samskivert/jdbc/depot/FieldMarshaller.java +++ b/src/java/com/samskivert/jdbc/depot/FieldMarshaller.java @@ -417,7 +417,7 @@ public abstract class FieldMarshaller } protected static class ByteEnumMarshaller extends FieldMarshaller { - public ByteEnumMarshaller (Class clazz) { + public ByteEnumMarshaller (Class clazz) { try { _factmeth = clazz.getMethod("fromByte", new Class[] { Byte.TYPE }); } catch (Exception e) {