[GitHub] commons-lang pull request: LANG-781 Added methods to ObjectUtils c...

2016-05-26 Thread vanta
Github user vanta commented on the pull request:

https://github.com/apache/commons-lang/pull/108#issuecomment-221998592
  
@PascalSchumacher Nothing to sorry for :)


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] commons-lang pull request: LANG-781 Added methods to ObjectUtils c...

2016-05-26 Thread PascalSchumacher
Github user PascalSchumacher commented on the pull request:

https://github.com/apache/commons-lang/pull/108#issuecomment-221952053
  
Thanks! :+1: 

For each loop won the discussion, so I merged only the first commit.

@vanta Sorry for telling you to refactor to use a for loop.




---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] commons-lang pull request: LANG-781 Added methods to ObjectUtils c...

2016-05-26 Thread asfgit
Github user asfgit closed the pull request at:

https://github.com/apache/commons-lang/pull/108


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] commons-lang pull request: LANG-781 Added methods to ObjectUtils c...

2016-05-17 Thread garydgregory
Github user garydgregory commented on the pull request:

https://github.com/apache/commons-lang/pull/108#issuecomment-219860202
  
There is a discussion going on right now on the dev mailing list about 
for-each vs. for. Let's see how that plays out. See 
https://commons.apache.org/mail-lists.html


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] commons-lang pull request: LANG-781 Added methods to ObjectUtils c...

2016-05-17 Thread vanta
Github user vanta commented on the pull request:

https://github.com/apache/commons-lang/pull/108#issuecomment-219846549
  
@garydgregory How bout `firstNonNull` method that exists since 2009 and 
uses for-each loop to iterate over array?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] commons-lang pull request: LANG-781 Added methods to ObjectUtils c...

2016-05-08 Thread PascalSchumacher
Github user PascalSchumacher commented on the pull request:

https://github.com/apache/commons-lang/pull/108#issuecomment-217712963
  
@vanta It would be nice if you could update the pull request according to 
garys comments.

Thanks!


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] commons-lang pull request: LANG-781 Added methods to ObjectUtils c...

2016-04-14 Thread vanta
Github user vanta commented on the pull request:

https://github.com/apache/commons-lang/pull/108#issuecomment-210151159
  
Thank you for response. I will apply changes you mentioned.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] commons-lang pull request: LANG-781 Added methods to ObjectUtils c...

2016-04-13 Thread garydgregory
Github user garydgregory commented on the pull request:

https://github.com/apache/commons-lang/pull/108#issuecomment-209650500
  
Yes:
- Thank you for the patch.
- The Javadoc has some bogus text, like starting with "". You do not 
need that.
- Do not use a for-each loop to traverse an array. This creates an iterator 
when none is needed. Use a normal for loop, which will not create the extra 
Iterator to GC. This matters when a libraries is used on the critical path 
and/or environments trying to do low/no GC.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] commons-lang pull request: LANG-781 Added methods to ObjectUtils c...

2015-11-23 Thread vanta
Github user vanta commented on the pull request:

https://github.com/apache/commons-lang/pull/108#issuecomment-159023629
  
Any update on this?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] commons-lang pull request: LANG-781 Added methods to ObjectUtils c...

2015-08-21 Thread vanta
GitHub user vanta opened a pull request:

https://github.com/apache/commons-lang/pull/108

LANG-781 Added methods to ObjectUtils class to check for null element…

I've created this pull request to refresh the issue LANG-781 as I faced a 
lack of methods to check nulls in array.

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/vanta/commons-lang master

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/commons-lang/pull/108.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #108


commit b9dfcfd1a18b2d277402084be0bd10faf0cabca4
Author: Krzysztof Wolny 
Date:   2015-07-28T12:54:19Z

LANG-781 Added methods to ObjectUtils class to check for null elements in 
the array




---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---