Remove an unwanted print.

This commit is contained in:
Matthieu Gautier 2019-07-24 11:53:10 +02:00 committed by Kelson
parent d2e6b2a916
commit 95138d207b
1 changed files with 0 additions and 1 deletions

View File

@ -112,7 +112,6 @@ class MetaPlatformInfo(PlatformInfo):
def add_targets(self, targetName, targets): def add_targets(self, targetName, targets):
targetDefs = [] targetDefs = []
for platformName in self.subPlatformNames: for platformName in self.subPlatformNames:
print("radd {}".format(platformName))
platform = self.get_platform(platformName, targets) platform = self.get_platform(platformName, targets)
targetDefs += platform.add_targets(targetName, targets) targetDefs += platform.add_targets(targetName, targets)
return targetDefs return targetDefs