Subversion Repository Public Repository

litesoft

Diff Revisions 49 vs 151 for /trunk/Java/core/Server/src/org/litesoft/orsup/lazyload/AbstractLazyLoadTo.java

Diff revisions: vs.
  @@ -28,8 +28,7 @@
28 28
29 29 public final boolean equals( AbstractLazyLoadTo pThem )
30 30 {
31 - return (this == pThem) ||
32 - ((pThem != null) && this.getAttributeName().equals( pThem.getAttributeName() ));
31 + return (this == pThem) || ((pThem != null) && this.getAttributeName().equals( pThem.getAttributeName() ));
33 32 }
34 33
35 34 @Override
  @@ -59,8 +58,7 @@
59 58 {
60 59 if ( !Utils.areNonArraysEqual( pThem.getTransaction(), mOwner.getTransaction() ) )
61 60 {
62 - throw new IllegalStateException( "We, '" + display( mOwner ) + "' and '" + display( pThem ) +
63 - "', are not in the same Transaction" );
61 + throw new IllegalStateException( "We, '" + display( mOwner ) + "' and '" + display( pThem ) + "', are not in the same Transaction" );
64 62 }
65 63 }
66 64