[Fb-contrib-commit] SF.net SVN: fb-contrib: [981] trunk/fb-contrib/src/com/mebigfatguy/ fbcontrib/
Brought to you by:
dbrosius
From: <dbr...@us...> - 2007-11-24 15:59:00
|
Revision: 981 http://fb-contrib.svn.sourceforge.net/fb-contrib/?rev=981&view=rev Author: dbrosius Date: 2007-11-24 07:59:04 -0800 (Sat, 24 Nov 2007) Log Message: ----------- USBR fixes Modified Paths: -------------- trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/SillynessPotPourri.java Modified: trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/SillynessPotPourri.java =================================================================== --- trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/SillynessPotPourri.java 2007-11-24 15:55:47 UTC (rev 980) +++ trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/SillynessPotPourri.java 2007-11-24 15:59:04 UTC (rev 981) @@ -475,7 +475,6 @@ private int getshort(byte[] bytes, int offset) { - short s = (short)((0x0000FFFF & (bytes[offset] << 8)) | (0x00FF & bytes[offset+1])); - return s; + return (short)((0x0000FFFF & (bytes[offset] << 8)) | (0x00FF & bytes[offset+1])); } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |