Skip to content

Commit

Permalink
Fix #154 (bad merge from 7.x)
Browse files Browse the repository at this point in the history
  • Loading branch information
sbordes committed Jul 21, 2015
1 parent 9cc4683 commit 21c913d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ static <C> UniqueKey<C> create(final Class<C> clazz, final Object... keyPart) {
static <C> UniqueKey<C> create(final Class<C> clazz, final Object[] optionalData, final Object... keyPart) {

UniqueKey<C> uniqueKey;
if (keyPart == null || keyPart.length == 0 || keyPart[0].toString().isEmpty()) {
if (keyPart == null || keyPart.length == 0) {

This comment has been minimized.

Copy link
@Rizen59

Rizen59 Jul 22, 2015

Contributor

You missed the second create method above ;)

uniqueKey = createSingle(clazz, optionalData);
} else {
uniqueKey = createMulti(clazz, keyPart, optionalData);
Expand Down

3 comments on commit 21c913d

@sbordes
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You are right, it's committed I will launch a build at noon (ci server is offline right now)

@Rizen59
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks !

@sbordes
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

build is ok (http://ci.jrebirth.org/job/JRebirth-8x/241/), you can grab the latest snaphsot from OJO, another build is running to deploy the website

Please sign in to comment.