VstfpRepository.readResponse uses bad compare logic
---------------------------------------------------
Key: IVY-1119
URL: https://issues.apache.org/jira/browse/IVY-1119
Project: Ivy
Issue Type: Bug
Components: Core
Affects Versions: 2.1.0-RC2
Reporter: Dave Brosius
Priority: Minor
VsftpRepository.readResponse compares a string to a stringbuffer
if ("Not connected.".equals(response)) {
should be
if ("Not connected.".equals(response.toString())) {
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.