Subversion Repository Public Repository

litesoft

Diff Revisions 626 vs 948 for /trunk/GWT_Sandbox/FormEngine/src/com/temp/shared/utils/Throwables.java

Diff revisions: vs.
  @@ -2,7 +2,7 @@
2 2
3 3 public class Throwables {
4 4
5 - public static RuntimeException asRuntimeException(Throwable t) {
6 - return t instanceof RuntimeException ? (RuntimeException) t : new RuntimeException(t);
5 + public static RuntimeException asRuntimeException( Throwable t ) {
6 + return t instanceof RuntimeException ? (RuntimeException) t : new RuntimeException( t );
7 7 }
8 8 }