Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
Adobe Flex SDK Previous
-
None
-
None
-
Affected OS(s): All OS Platforms
Affected OS(s): All OS Platforms
Language Found: English
Description
Steps to reproduce:
1. View latest nightly build of Flex Gumbo LangRef.
2. Navigate to the TileJustifyColumns and TileJustifyRows classes
3. Check the static constants for COLUMNSIZE (COLUMNSIZE : String = "columnSize"), ROWSIZE (ROWSIZE : String = "rowSize") and GAPSIZE(GAPSIZE : String = "gapSize") constants
Actual Results:
COLUMNSIZE : String = "columnSize"
ROWSIZE : String = "rowSize"
GAPSIZE : String = "gapSize"
Expected Results:
Per API consistency, static constants should use an underscore ("_") to separate words if there is camel-casing going on (see VerticalAlign class for an example: CONTENT_JUSTIFY : String = "contentJustify")
COLUMN_SIZE : String = "columnSize"
ROW_SIZE : String = "rowSize"
GAP_SIZE : String = "gapSize"
Workaround (if any):
n/a