[jira] Commented: (COLLECTIONS-250) containsKey on MultiHashMap seems incorrect

2007-04-30 Thread James Carman (JIRA)
[ https://issues.apache.org/jira/browse/COLLECTIONS-250?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12492652 ] James Carman commented on COLLECTIONS-250: -- Just use a set along side the map to keep track of which

[jira] Resolved: (COLLECTIONS-250) containsKey on MultiHashMap seems incorrect

2007-04-30 Thread James Carman (JIRA)
[ https://issues.apache.org/jira/browse/COLLECTIONS-250?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] James Carman resolved COLLECTIONS-250. -- Resolution: Invalid Assignee: James Carman I believe we have established

[jira] Commented: (COLLECTIONS-250) containsKey on MultiHashMap seems incorrect

2007-04-27 Thread James Carman (JIRA)
[ https://issues.apache.org/jira/browse/COLLECTIONS-250?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12492379 ] James Carman commented on COLLECTIONS-250: -- The behavior has changed from what? The Map API?

[jira] Commented: (MATH-155) Number Base Conversion

2006-08-18 Thread James Carman (JIRA)
[ http://issues.apache.org/jira/browse/MATH-155?page=comments#action_12428966 ] James Carman commented on MATH-155: --- So, you basically want to translate the String representation of a number in one base into the String representation for the

[jira] Commented: (MATH-155) Number Base Conversion

2006-08-18 Thread James Carman (JIRA)
[ http://issues.apache.org/jira/browse/MATH-155?page=comments#action_12428969 ] James Carman commented on MATH-155: --- What is Base in this API example? Is that some new class? Couldn't you represent the base using a simple integer? Also,

[jira] Commented: (MATH-155) Number Base Conversion

2006-08-18 Thread James Carman (JIRA)
[ http://issues.apache.org/jira/browse/MATH-155?page=comments#action_12428974 ] James Carman commented on MATH-155: --- How about this? String stringValue( long n, int base ); One might argue that this belongs in Commons Lang's StringUtils

[jira] Commented: (MATH-155) Number Base Conversion

2006-08-18 Thread James Carman (JIRA)
[ http://issues.apache.org/jira/browse/MATH-155?page=comments#action_12428975 ] James Carman commented on MATH-155: --- Why not try this? new java.math.BigInteger( 2147483647, 10 ).toString( 36 ); Wouldn't that do what you want? Number Base

[jira] Updated: (MATH-155) Number Base Conversion

2006-08-18 Thread James Carman (JIRA)
[ http://issues.apache.org/jira/browse/MATH-155?page=all ] James Carman updated MATH-155: -- Comment: was deleted Number Base Conversion -- Key: MATH-155 URL:

[jira] Closed: (MATH-155) Number Base Conversion

2006-08-18 Thread James Carman (JIRA)
[ http://issues.apache.org/jira/browse/MATH-155?page=all ] James Carman closed MATH-155. - Resolution: Won't Fix Assignee: James Carman This functionality is provided by the core JDK's java.math.BigDecimal API. It would be trivial to create a helper