> Hi, Philip,
>
> With some effort on the new DailyProjectFileMetric implementation I
> am
> close to know
> the cause of this problem but I do not know how to fix it logically.
Hi Hongbing,
My solution is:
public static String getTopLevelWorkspaceNameHack(Workspace workspace) {
String topLevelName = workspace.getTopLevelWorkspaceName();
if (topLevelName.charAt(1) == ':') {
// It's a drive letter, so lowercase it.
topLevelName = topLevelName.toLowerCase();
}
return topLevelName;
}
Is this not a logical solution?
Cheers,
Philip