Merge remote-tracking branch 'origin/develop' into wind_arrow

# Conflicts:
#	src/main/java/seng302/visualiser/fxObjects/assets_3D/ModelType.java
This commit is contained in:
Zhi You Tan
2017-09-28 14:38:31 +13:00
32 changed files with 913 additions and 140 deletions
@@ -158,7 +158,13 @@ public abstract class Message {
* @return The current buffer as a byte array
*/
public byte[] getBuffer(){
return buffer.array();
byte[] bytes = buffer.array();
// buffer.reset();
// buffer.clear();
// buffer = null;
return bytes;
}
/**