Skip to content

Commit

Permalink
TopMenu: Clean up TopMenuSortingBead out of class and use interface i…
Browse files Browse the repository at this point in the history
…nstead

(reference #40)
  • Loading branch information
piotrzarzycki21 committed Nov 13, 2023
1 parent 467731d commit 65e6c09
Showing 1 changed file with 5 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -1,20 +1,15 @@
package classes.topMenu.components.beads
{
import classes.topMenu.model.TopMenuVO;

import org.apache.royale.core.IBead;
import org.apache.royale.core.IStrand;
import classes.topMenu.model.TopMenuVO;
import org.apache.royale.core.Bead;

public class TopMenuSortingBead extends Bead
public class TopMenuSortingBead implements IBead
{
public function TopMenuSortingBead()
{
super();
}

override public function set strand(value:IStrand):void
public function set strand(value:IStrand):void
{
super.strand = value;

}

public function eq(a:TopMenuVO, b:TopMenuVO):int
Expand Down

0 comments on commit 65e6c09

Please sign in to comment.