Skip to content

Commit

Permalink
Removed print at launch
Browse files Browse the repository at this point in the history
- This was in place to hide the launching bug
- It's not required anymore as the bug has been fixed in
  dali-csharp-binder

Change-Id: Ia971993bedebb80e5254892d4fbb39d89e1f0819
  • Loading branch information
adeelkazmi committed Sep 13, 2019
1 parent 57f802d commit 579f520
Show file tree
Hide file tree
Showing 7 changed files with 0 additions and 14 deletions.
2 changes: 0 additions & 2 deletions food-shopper/FoodShopper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -408,8 +408,6 @@ static private GradientVisual CreateGradientVisual()

static void Main(string[] args)
{
// Do not remove this print out - helps with the TizenFX stub sync issue
Console.WriteLine("Running Example...");
FoodShopperDemo foodShopperDemo = new FoodShopperDemo();
foodShopperDemo.Run(args);
}
Expand Down
2 changes: 0 additions & 2 deletions hello-world/HelloWorld.cs
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,6 @@ protected override void OnCreate()
[STAThread] // Forces app to use one thread to access NUI
static void Main(string[] args)
{
// Do not remove this print out - helps with the TizenFX stub sync issue
Console.WriteLine("Running Example...");
HelloWorldExample example = new HelloWorldExample();
example.Run(args);
}
Expand Down
2 changes: 0 additions & 2 deletions layout-demo/LayoutDemo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -208,8 +208,6 @@ public static void SetUnselectedIcon(Button button, string url)

static void Main(string[] args)
{
// Do not remove this print out - helps with the TizenFX stub sync issue
Console.WriteLine("Running Example...");
LayoutingExample example = new LayoutingExample();
example.Run(args);
}
Expand Down
2 changes: 0 additions & 2 deletions multiple-window/MultipleWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -489,8 +489,6 @@ public MultipleWindowExample(Size2D windowSize, Position2D windowPosition) : bas
[STAThread] // Forces app to use one thread to access NUI
static void Main(string[] args)
{
// Do not remove this print out - helps with the TizenFX stub sync issue
Console.WriteLine("Running Example.......");
MultipleWindowExample example = new MultipleWindowExample(new Size2D(1290, 200), new Position2D(0, 0));
example.Run(args);
}
Expand Down
2 changes: 0 additions & 2 deletions silk-demo/SilkDemo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -596,8 +596,6 @@ static private GradientVisual CreateGradientVisual(Vector4 targetcolor)

static void Main(string[] args)
{
// Do not remove this print out - helps with the TizenFX stub sync issue
Console.WriteLine("Running Example...");
Demo silkDemo = new Demo();
silkDemo.Run(args);
}
Expand Down
2 changes: 0 additions & 2 deletions simple-layout/SimpleLayout.cs
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,6 @@ ImageView CreateChildImageView( String url, Size2D size )

static void Main(string[] args)
{
// Do not remove this print out - helps with the TizenFX stub sync issue
Console.WriteLine("Running Example...");
SimpleLayout simpleLayout = new SimpleLayout();
simpleLayout.Run(args);
}
Expand Down
2 changes: 0 additions & 2 deletions simple-text/simple-text.cs
Original file line number Diff line number Diff line change
Expand Up @@ -334,8 +334,6 @@ public void TextLabelLineWrapModeTest()
[STAThread]
static void Main(string[] args)
{
// Do not remove this print out - helps with the TizenFX stub sync issue
Console.WriteLine("Running Example...");
Example example = new Example();
example.Run(args);
}
Expand Down

0 comments on commit 579f520

Please sign in to comment.