Skip to content

Commit

Permalink
organize imports
Browse files Browse the repository at this point in the history
  • Loading branch information
joshtynjala committed Feb 12, 2020
1 parent 8fc54ef commit 8ecd4c0
Show file tree
Hide file tree
Showing 9 changed files with 6 additions and 11 deletions.
1 change: 0 additions & 1 deletion source/feathers/controls/DataGrid.as
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ accordance with the terms of the accompanying license agreement.
*/
package feathers.controls
{
import feathers.controls.DataGrid;
import feathers.controls.DataGridColumn;
import feathers.controls.Scroller;
import feathers.controls.renderers.DefaultDataGridHeaderRenderer;
Expand Down
4 changes: 2 additions & 2 deletions source/feathers/controls/ImageLoader.as
Original file line number Diff line number Diff line change
Expand Up @@ -36,16 +36,16 @@ package feathers.controls

import starling.core.Starling;
import starling.display.Image;
import starling.display.Mesh;
import starling.display.Quad;
import starling.events.EnterFrameEvent;
import starling.events.Event;
import starling.styles.MeshStyle;
import starling.textures.Texture;
import starling.textures.TextureSmoothing;
import starling.utils.RectangleUtil;
import starling.utils.ScaleMode;
import starling.utils.SystemUtil;
import starling.styles.MeshStyle;
import starling.display.Mesh;

/**
* The tint value to use on the internal
Expand Down
2 changes: 1 addition & 1 deletion source/feathers/controls/List.as
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ package feathers.controls
import flash.ui.Keyboard;
import flash.utils.Dictionary;

import starling.display.DisplayObject;
import starling.events.Event;
import starling.utils.Pool;
import starling.display.DisplayObject;

/**
* A style name to add to all item renderers in this list. Typically
Expand Down
1 change: 0 additions & 1 deletion source/feathers/controls/ToggleButton.as
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ accordance with the terms of the accompanying license agreement.
package feathers.controls
{
import feathers.core.IGroupedToggle;
import feathers.core.PropertyProxy;
import feathers.core.ToggleGroup;
import feathers.events.FeathersEventType;
import feathers.skins.IStyleProvider;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ package feathers.controls.popups
{
import feathers.controls.Callout;
import feathers.core.PopUpManager;
import feathers.layout.RelativePosition;
import feathers.utils.geom.matrixToScaleX;
import feathers.utils.geom.matrixToScaleY;

Expand Down
5 changes: 3 additions & 2 deletions source/feathers/controls/renderers/DefaultListItemRenderer.as
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,12 @@ accordance with the terms of the accompanying license agreement.
package feathers.controls.renderers
{
import feathers.controls.List;
import feathers.core.IFeathersControl;
import feathers.core.IValidating;
import feathers.events.FeathersEventType;
import feathers.skins.IStyleProvider;

import starling.display.DisplayObject;
import feathers.core.IValidating;
import feathers.core.IFeathersControl;
import starling.events.Event;

/**
Expand Down
1 change: 0 additions & 1 deletion source/feathers/controls/renderers/IListItemRenderer.as
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ package feathers.controls.renderers
{
import feathers.controls.List;
import feathers.core.IToggle;
import starling.display.DisplayObject;

/**
* Dispatched when the the user taps or clicks the item renderer. The touch
Expand Down
1 change: 0 additions & 1 deletion source/feathers/layout/IDragDropLayout.as
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ accordance with the terms of the accompanying license agreement.
package feathers.layout
{
import starling.display.DisplayObject;
import flash.geom.Rectangle;

/**
* Methods for layouts that support drag and drop.
Expand Down
1 change: 0 additions & 1 deletion source/feathers/layout/VerticalLayout.as
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ package feathers.layout

import flash.errors.IllegalOperationError;
import flash.geom.Point;
import flash.geom.Rectangle;
import flash.ui.Keyboard;

import starling.display.DisplayObject;
Expand Down

0 comments on commit 8ecd4c0

Please sign in to comment.