Skip to content
This repository has been archived by the owner on Mar 1, 2021. It is now read-only.

Commit

Permalink
Merge pull request #64 from nhaarman/release-0.14.1
Browse files Browse the repository at this point in the history
Release 0.14.1
  • Loading branch information
nhaarman committed Oct 30, 2015
2 parents 0fa0361 + 52caed8 commit af6416f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

Version 0.14.1 *(2015-10-30)*
-----------------------------------

* Fixed crash on creating Presenter.


Version 0.14.0 *(2015-10-29)*
-----------------------------------

Expand Down
2 changes: 1 addition & 1 deletion triad/src/main/java/com/nhaarman/triad/Screen.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ protected ViewGroup createView(@NonNull final ViewGroup parent) {

@NonNull
public Presenter<?, ?> getPresenter(final int viewId) {
if (mPresenters.valueAt(viewId) == null) {
if (mPresenters.get(viewId) == null) {
mPresenters.put(viewId, createPresenter(viewId));
}

Expand Down

0 comments on commit af6416f

Please sign in to comment.