Subversion Repository Public Repository

litesoft

Diff Revisions 811 vs 812 for /trunk/Java/core/Server/src/org/litesoft/util/FileReplacer.java

Diff revisions: vs.
  @@ -47,7 +47,7 @@
47 47 {
48 48 byte[] srcBytes = FileUtils.load( pSource, MAX_FILE_SIZE );
49 49 byte[] dstBytes = FileUtils.load( pDestination, MAX_FILE_SIZE );
50 - if ( !Integers.areArraysEqual( srcBytes, dstBytes ) )
50 + if ( !Bytes.areArraysEqual( srcBytes, dstBytes ) )
51 51 {
52 52 FileUtils.deleteIfExists( pDestination );
53 53 FileUtils.store( pDestination, srcBytes );