Details
-
Bug
-
Status: Closed
-
Trivial
-
Resolution: Fixed
-
1.2.6
-
None
Description
In ResourceStreamRequestTarget, the equals() method is:
public boolean equals(Object obj)
{
if (obj instanceof ResourceStreamRequestTarget)
return false;
}
Note that the fileName is comparing to itself. It should really be:
fileName.equals(that.fileName)