Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
jharting committed Nov 1, 2010
1 parent c0b6a54 commit 8e4a692
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
Expand Up @@ -83,7 +83,7 @@ public Response toResponse(Throwable e)
log.warn("SeamExceptionMapper has not been initialized properly. You are probably running in non-CDI environment.");
}

log.debugv("Handling {0}", e.getClass()); // TODO
log.debugv("Handling {0}", e.getClass());

Throwable exception = e;

Expand All @@ -107,7 +107,7 @@ public Response toResponse(Throwable e)
return delegateException(mapper, exception);
}

log.debugv("Unwrapping {0}", exception.getClass()); // TODO
log.debugv("Unwrapping {0}", exception.getClass());
exception = exception.getCause();
}

Expand Down
5 changes: 2 additions & 3 deletions impl/src/main/java/org/jboss/seam/rest/util/Utils.java
Expand Up @@ -41,9 +41,8 @@ public class Utils
}

/**
* TODO JAVADOC
* @param clazz
* @return
* Returns true if and only it the clazz parameter is a primitive type wrapper.
* (Boolean, Character, Byte, Short, Integer, Long, Float, Double or Void)
*/
public static boolean isPrimitiveWrapper(Class<?> clazz)
{
Expand Down

0 comments on commit 8e4a692

Please sign in to comment.