Skip to content

Commit

Permalink
2.33
Browse files Browse the repository at this point in the history
  • Loading branch information
RuedigerMoeller committed Jul 5, 2015
1 parent 1337fdb commit 96154b5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import java.util.zip.ZipFile

apply plugin: 'java'
apply plugin: 'maven'
version="2.32"
version="2.33"

targetCompatibility = 1.7
sourceCompatibility = 1.7
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>de.ruedigermoeller</groupId>
<artifactId>fst</artifactId>
<version>2.32</version>
<version>2.33</version>

<description>a fast java serialization drop in-replacement + some serialization based utils (Structs, OffHeap Memory)</description>
<url>https://code.google.com/p/fast-serialization/</url>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -853,7 +853,7 @@ protected FSTObjectInput getIn() {

protected FSTObjectOutput getOut() {
FSTObjectOutput fstOut = (FSTObjectOutput) streamCoderFactory.getOutput().get();
if ( fstOut == null ) {
if ( fstOut == null || fstOut.closed ) {
streamCoderFactory.getOutput().set(new FSTObjectOutput(this));
return getOut();
}
Expand Down

0 comments on commit 96154b5

Please sign in to comment.