[jira] [Commented] (JCR-3833) Compatibility with Java 8

2018-06-06 Thread Julian Reschke (JIRA)
[ https://issues.apache.org/jira/browse/JCR-3833?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16503266#comment-16503266 ] Julian Reschke commented on JCR-3833: - trunk: [r1643781|http://svn.apache.org/r1643781]

[jira] [Commented] (JCR-3833) Compatibility with Java 8

2016-04-04 Thread Shashank Gupta (JIRA)
[ https://issues.apache.org/jira/browse/JCR-3833?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15225688#comment-15225688 ] Shashank Gupta commented on JCR-3833: - [~unico] Two points: # it is possible that item becomes eligible

[jira] [Commented] (JCR-3833) Compatibility with Java 8

2016-04-04 Thread Takahito Kikuchi (JIRA)
[ https://issues.apache.org/jira/browse/JCR-3833?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15224490#comment-15224490 ] Takahito Kikuchi commented on JCR-3833: --- [~un...@apache.org], this looks good. I tried then confirmed

[jira] [Commented] (JCR-3833) Compatibility with Java 8

2016-04-04 Thread Unico Hommes (JIRA)
[ https://issues.apache.org/jira/browse/JCR-3833?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15224153#comment-15224153 ] Unico Hommes commented on JCR-3833: --- [~takahito.kikuchi] I sill have doubts that with this method of first

[jira] [Commented] (JCR-3833) Compatibility with Java 8

2016-04-04 Thread Takahito Kikuchi (JIRA)
[ https://issues.apache.org/jira/browse/JCR-3833?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15223887#comment-15223887 ] Takahito Kikuchi commented on JCR-3833: --- [~un...@apache.org], thank you. That sounds good. I agree

[jira] [Commented] (JCR-3833) Compatibility with Java 8

2016-04-04 Thread Unico Hommes (JIRA)
[ https://issues.apache.org/jira/browse/JCR-3833?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15223779#comment-15223779 ] Unico Hommes commented on JCR-3833: --- [~takahito.kikuchi] Because the iterator is indeed ordered, all the

[jira] [Commented] (JCR-3833) Compatibility with Java 8

2016-04-03 Thread Takahito Kikuchi (JIRA)
[ https://issues.apache.org/jira/browse/JCR-3833?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15223567#comment-15223567 ] Takahito Kikuchi commented on JCR-3833: --- [~un...@apache.org], sorry, I am not sure how {{counter}}

Re: [jira] [Commented] (JCR-3833) Compatibility with Java 8

2016-04-03 Thread Clay Ferguson
In general when iterating using an "iterator" (where concurrent modifications are not allowed), and you need to delete items from the collection being iterated, the only viable choice is to do the entire scan over the iterator and merely "collect information" (like put all the stuff you want to

[jira] [Commented] (JCR-3833) Compatibility with Java 8

2016-04-03 Thread Unico Hommes (JIRA)
[ https://issues.apache.org/jira/browse/JCR-3833?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15223358#comment-15223358 ] Unico Hommes commented on JCR-3833: --- [~takahito.kikuchi] One possible solution is to keep a {{counter}}

[jira] [Commented] (JCR-3833) Compatibility with Java 8

2016-04-02 Thread Takahito Kikuchi (JIRA)
[ https://issues.apache.org/jira/browse/JCR-3833?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15223071#comment-15223071 ] Takahito Kikuchi commented on JCR-3833: --- [~un...@apache.org], I mentioned what if the entry is *not*

[jira] [Commented] (JCR-3833) Compatibility with Java 8

2016-04-02 Thread Unico Hommes (JIRA)
[ https://issues.apache.org/jira/browse/JCR-3833?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15223026#comment-15223026 ] Unico Hommes commented on JCR-3833: --- [~takahito.kikuchi] The problem is that once you have removed the

[jira] [Commented] (JCR-3833) Compatibility with Java 8

2016-04-02 Thread Takahito Kikuchi (JIRA)
[ https://issues.apache.org/jira/browse/JCR-3833?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15222839#comment-15222839 ] Takahito Kikuchi commented on JCR-3833: --- [~un...@apache.org], we are concerned about

[jira] [Commented] (JCR-3833) Compatibility with Java 8

2016-04-01 Thread Unico Hommes (JIRA)
[ https://issues.apache.org/jira/browse/JCR-3833?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15221559#comment-15221559 ] Unico Hommes commented on JCR-3833: --- [~shgupta] A change in java.util.AbstractMap from which LRUCache

[jira] [Commented] (JCR-3833) Compatibility with Java 8

2016-03-31 Thread Shashank Gupta (JIRA)
[ https://issues.apache.org/jira/browse/JCR-3833?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15220053#comment-15220053 ] Shashank Gupta commented on JCR-3833: - [~unico] what is intention of this