Community
Participate
Working Groups
Build Identifier: eclipse-SDK-I20100216-2200-win32 With the addition of HTTPS support, a protocol preference was added. There is a case where if the protocol preference is blank, the ICs are assigned the space character for a protocol instead of the default (HTTP) Reproducible: Always Steps to Reproduce: 1. Launch Eclipse with a remote IC added (leave protocol preference blank) 2. Goto Window -> Preferences -> Help -> Content, and see that the protocol preference is blank 3.
Created attachment 159620 [details] Patch for this space character issue Patch which creates a fresh array of the append value (HTTP) in this case, if a preference is blank. Since the .split method returns a String [1] for space, this was throwing us off. If space is encountered, we want to create a String[0] and let the code update this array for us (which was already in place).
Patch committed to HEAD, Fixed