Skip to content

Commit 613f225

Browse files
committed
Got rid of compiler warnings (closes feathersui#504)
1 parent bf71090 commit 613f225

File tree

3 files changed

+21
-0
lines changed

3 files changed

+21
-0
lines changed

source/feathers/controls/text/BitmapFontTextRenderer.as

+5
Original file line numberDiff line numberDiff line change
@@ -1032,6 +1032,11 @@ import starling.text.BitmapChar;
10321032

10331033
class CharLocation
10341034
{
1035+
public function CharLocation()
1036+
{
1037+
1038+
}
1039+
10351040
public var char:BitmapChar;
10361041
public var scale:Number;
10371042
public var x:Number;

source/feathers/layout/LayoutBoundsResult.as

+8
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,14 @@ package feathers.layout
1212
*/
1313
public class LayoutBoundsResult
1414
{
15+
/**
16+
* Constructor.
17+
*/
18+
public function LayoutBoundsResult()
19+
{
20+
21+
}
22+
1523
/**
1624
* The visible width of the view port. The view port's content may be
1725
* clipped.

source/feathers/layout/ViewPortBounds.as

+8
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,14 @@ package feathers.layout
1313
*/
1414
public class ViewPortBounds
1515
{
16+
/**
17+
* Constructor.
18+
*/
19+
public function ViewPortBounds()
20+
{
21+
22+
}
23+
1624
/**
1725
* The x position of the view port, in pixels.
1826
*/

0 commit comments

Comments
 (0)