| Summary: | ROV Path mapping fails for Windows-to-Windows | ||
|---|---|---|---|
| Product: | [Technology] RTSC | Reporter: | Chris McCormick <c-mccormick> |
| Component: | Rta | Assignee: | Branavan Karunamoorthy <b-karunamoorthy> |
| Status: | ASSIGNED --- | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | CC: | d-russo, dfriedland |
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | All | ||
| OS: | All | ||
| Whiteboard: | |||
|
Description
Chris McCormick
In (rov-f06) com.ti.rta.support/src/com/ti/rta/support/file/FileLookup.java:
/* Only look at the results which are of type 'LocalFileStorage' */
if (result[i] instanceof LocalFileStorage) {
/* Get the file path from the object. */
try {
validPath =
((LocalFileStorage) result[i]).getFile().getCanonicalPath();
} catch (IOException e) {
e.printStackTrace();
return (null);
}
}
else {
System.out.println("FileLookup - Received result of type "
+ result[i].getClass());
}
|