Subversion Repository Public Repository

litesoft

Diff Revisions 49 vs 151 for /trunk/Java/core/Server/src/org/litesoft/db/MultipleTablesException.java

Diff revisions: vs.
  @@ -33,7 +33,6 @@
33 33 private static MultipleTablesException createFrom( String pTableName, List<String> pTables )
34 34 {
35 35 Collections.sort( pTables );
36 - throw new MultipleTablesException(
37 - "Multiple Tables found " + pTables + " from Name: '" + pTableName + "'" );
36 + throw new MultipleTablesException( "Multiple Tables found " + pTables + " from Name: '" + pTableName + "'" );
38 37 }
39 38 }