Skip to content

Commit

Permalink
Removed console logging put in during testing
Browse files Browse the repository at this point in the history
  • Loading branch information
nicstrong committed May 19, 2013
1 parent 35d8edc commit 974f6d8
Showing 1 changed file with 0 additions and 6 deletions.
Expand Up @@ -67,8 +67,6 @@ public AndroidSdk( File sdkPath, String platformOrApiLevel )
{
this.sdkPath = sdkPath;

System.out.println( "AndroidSdk " + sdkPath + "," + platformOrApiLevel );

if ( sdkPath != null )
{
sdkManager = SdkManager.createManager( sdkPath.getPath(), new NullLogger() );
Expand Down Expand Up @@ -113,14 +111,10 @@ private IAndroidTarget findPlatformByNameOrApiLevel( String platformOrApiLevel )
{
return target;
}
System.out.println( "Failed to find target by hash: "
+ IAndroidTarget.PLATFORM_HASH_PREFIX + platformOrApiLevel );


// fallback to searching for platform on standard Android platforms (isPlatform() is true)
for ( IAndroidTarget t: sdkManager.getTargets() )
{
System.out.println( "Checking " + t.getVersionName() + " against " + platformOrApiLevel );
if ( t.isPlatform() && t.getVersionName().equals( platformOrApiLevel ) )
{
return t;
Expand Down

0 comments on commit 974f6d8

Please sign in to comment.