Skip to content

Commit

Permalink
fix build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
progwml6 committed Mar 16, 2014
1 parent 49230e9 commit 691f739
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.properties
@@ -1,6 +1,6 @@
minecraft_version=1.7.2
forge_version=10.12.0.1027
mantle_version=109.be29b7d
mantle_version=114.8c6a5a8
FMP_version=1.0.0.211
CCLIB_version=1.0.0.44
NEI_version=1.6.1.8
Expand Down
Expand Up @@ -31,7 +31,7 @@ public void encodeInto(ChannelHandlerContext ctx, ByteBuf buffer) {
pbuff.writeInt(z);
try {
pbuff.writeNBTTagCompoundToBuffer(data);
} catch (IOException e) {
} catch (Exception e) {
e.printStackTrace();
}
}
Expand All @@ -44,7 +44,7 @@ public void decodeInto(ChannelHandlerContext ctx, ByteBuf buffer) {
z = pbuff.readInt();
try {
data = pbuff.readNBTTagCompoundFromBuffer();
} catch (IOException e) {
} catch (Exception e) {
e.printStackTrace();
}
}
Expand Down

0 comments on commit 691f739

Please sign in to comment.