Remove TODOs

This commit is contained in:
Eric Bottard
2015-12-18 16:28:12 +01:00
parent de2463a4e6
commit 286ba44ff1
12 changed files with 30 additions and 46 deletions

View File

@@ -145,7 +145,6 @@ public class ModuleLauncher {
jarURLs.add(jarFileArchive.getUrl());
for (Archive archive : jarFileArchive.getNestedArchives(ArchiveMatchingEntryFilter.FILTER)) {
// avoid duplication based on unique JAR names
// TODO - read the metadata from the JARs, do proper version resolution on merge
String urlAsString = archive.getUrl().toString();
String jarNameWithExtension = urlAsString.substring(0, urlAsString.lastIndexOf("!/"));
String jarNameWithoutExtension =

View File

@@ -18,7 +18,6 @@ package org.springframework.cloud.stream.module.launcher;
import java.lang.reflect.Method;
import java.net.URL;
import java.net.URLClassLoader;
import java.util.List;
import org.apache.commons.logging.Log;
@@ -65,7 +64,6 @@ public class MultiArchiveLauncher extends Launcher {
}
@Override
// TODO: this method is protected in Spring Boot but we need it to be public here
public void launch(String[] args) {
super.launch(args);
}