Skip to content

Commit

Permalink
Remove useless traces...
Browse files Browse the repository at this point in the history
Change-Id: I92025fd1ffbfda22613fe2dd4c96f66078f435be
Signed-off-by: Olivier Prouvost <olivier.prouvost@opcoach.com>
  • Loading branch information
opcoach committed Apr 7, 2020
1 parent 6dab724 commit b3ee0ac
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 7 deletions.
Expand Up @@ -152,7 +152,7 @@ public void checkApplicationExtensionStillThere()
IPluginModelBase base = getPluginBase();
Collection<IPluginExtension> appliExt = new ArrayList<IPluginExtension>();

System.out.println("Plugin base is : " + base);
// System.out.println("Plugin base is : " + base);
for (IPluginExtension e : pdeReg.findExtensionsForPlugin(base))
{
if (e.getPoint().equals("org.eclipse.core.runtime.applications"))
Expand Down
Expand Up @@ -90,7 +90,7 @@ public IProject getSampleProject()
{
if (!initDone)
{
System.out.println("****** Creating the project in test workspace ");
// System.out.println("****** Creating the project in test workspace ");
try
{
// Copy the sample project in the runtime workspace
Expand All @@ -99,7 +99,7 @@ public IProject getSampleProject()
initGenModel(PROJECT2_GENMODEL, PROJECT_ANT2_FILE, "{0}Impl", "G{0}", "src");
initGenModel(FANNOISE_GENMODEL, FANOISE_ANT_FILE);
initGenModel(RAILTOPO_GENMODEL, RAILTOPO_ANT_FILE);
System.out.println("Init finished");
// System.out.println("Init finished");
} catch (Exception ex)
{
ex.printStackTrace();
Expand Down
Expand Up @@ -188,10 +188,9 @@ class GMAGenModelImpl extends GenModelImpl implements GMAGenModel, GMAConstants
else if (gmafn.startsWith("platform:/resource/"))
{
val u = FileLocator.resolve(new URL(gmafn))
println("url " + u)
propertyFileName = u.toString.replaceFirst("file:", "")
}
println("gma properties file " + propertyFileName)
// println("gma properties file " + propertyFileName)
}
}
return propertyFileName
Expand Down
Expand Up @@ -254,11 +254,9 @@ public String getPropertyFilename() {
if (_startsWith_1) {
URL _uRL = new URL(gmafn);
final URL u = FileLocator.resolve(_uRL);
InputOutput.<String>println(("url " + u));
this.propertyFileName = u.toString().replaceFirst("file:", "");
}
}
InputOutput.<String>println(("gma properties file " + this.propertyFileName));
}
}
return this.propertyFileName;
Expand Down

0 comments on commit b3ee0ac

Please sign in to comment.