Skip to content
This repository has been archived by the owner on Jun 28, 2024. It is now read-only.

minor fixes for 3.7 #2

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 14 additions & 14 deletions CHANGE_LOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# CHANGE LOG

## 0.3.7
1. Bug fix on `YieldIterator` that caused thread to block forever if `#hasNext()` was called again
times it returned `false`.

## 0.3.6
1. Added `InputStreamSupplier#forInputStream( in )` which will parse the given InputStream to determine the encoding
and return a single use `InputStreamSupplier` instance whose get() call can only be called once.

## 0.3.5

1. changed collection of cachedSuppliers from ArrayList to ConcurrentLinkedDeque so we can safely manipulate group concurrently.
1. added `CachedSupplier#ofInitializer()` methods which take Suppliers and return `CachedSupplier<Void>`
# CHANGE LOG
## 0.3.7
1. Bug fix on `YieldIterator` that caused thread to block forever if `#hasNext()` was called again.
1. use primitive int iterator when possible for performance improvement
## 0.3.6
1. Added `InputStreamSupplier#forInputStream( in )` which will parse the given InputStream to determine the encoding
and return a single use `InputStreamSupplier` instance whose get() call can only be called once.
## 0.3.5
1. changed collection of cachedSuppliers from ArrayList to ConcurrentLinkedDeque so we can safely manipulate group concurrently.
1. added `CachedSupplier#ofInitializer()` methods which take Suppliers and return `CachedSupplier<Void>`
so clients don't have to make Suppliers that return null.
Loading