A small formatting change.

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@8937 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
This commit is contained in:
PSp..om 2011-12-16 10:27:26 +00:00
parent c686efc3a7
commit 665a7c8851
2 changed files with 4 additions and 6 deletions

View File

@ -118,13 +118,12 @@ public class SelectorKernel extends AbstractKernel
if( !reliable )
throw new UnsupportedOperationException( "Unreliable send not supported by this kernel." );
if( copy )
{
if( copy ) {
// Copy the data just once
byte[] temp = new byte[data.remaining()];
System.arraycopy(data.array(), data.position(), temp, 0, data.remaining());
data = ByteBuffer.wrap(temp);
}
}
// Hand it to all of the endpoints that match our routing
for( NioEndpoint p : endpoints.values() ) {

View File

@ -126,13 +126,12 @@ public class UdpKernel extends AbstractKernel
if( reliable )
throw new UnsupportedOperationException( "Reliable send not supported by this kernel." );
if( copy )
{
if( copy ) {
// Copy the data just once
byte[] temp = new byte[data.remaining()];
System.arraycopy(data.array(), data.position(), temp, 0, data.remaining());
data = ByteBuffer.wrap(temp);
}
}
// Hand it to all of the endpoints that match our routing
for( UdpEndpoint p : socketEndpoints.values() ) {