Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
1.0.0, 1.1.0, 1.2.0
-
None
-
None
Description
int spaceRemaining = COLUMN_1_WIDTH - s.length() - 1; String trimmedVName = s; // if the vertex name is longer than column 1 width, trim it down // "Tez Merge File Work" will become "Tez Merge File.." if (s != null && s.length() > COLUMN_1_WIDTH) {
s is dereferenced first, rendering the null check ineffective.