Status: New
Owner: ----
Labels: Type-Defect Priority-Medium
New issue 627 by
vrab...@gmail.com: LazilyParsedNumber does not implement
eqals and hashCode methods
https://code.google.com/p/google-gson/issues/detail?id=627
test case to reproduce the issue
package com.google.gson.internal;
import junit.framework.TestCase;
public class LazilyParsedNumberTest extends TestCase {
public void testHashCode(){
LazilyParsedNumber n1 = new LazilyParsedNumber("1");
LazilyParsedNumber n1Another = new LazilyParsedNumber("1");
assertEquals(n1.hashCode(), n1Another.hashCode());
}
public void testEquals(){
LazilyParsedNumber n1 = new LazilyParsedNumber("1");
LazilyParsedNumber n1Another = new LazilyParsedNumber("1");
assertTrue(n1.equals(n1Another));
}
What is the expected output? What do you see instead?
Any class should implement hashCode and equals when implementing Number
interface.
What version of the product are you using? On what operating system?
2.3
Please provide any additional information below.
https://code.google.com/p/google-gson/issues/detail?id=523
Similar one.
I could work on these, but first I would like to know if there was any
reason you decided not to implement these methods?
--
You received this message because this project is configured to send all
issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings