- renaming slf4j-converter module to slf4j-migrator

This commit is contained in:
Ceki Gulcu 2008-02-21 19:06:30 +00:00
parent fc9953ecd0
commit 5e411709ec
3 changed files with 3 additions and 4 deletions

View File

@ -33,7 +33,7 @@
<module>jcl104-over-slf4j</module>
<module>log4j-over-slf4j</module>
<module>slf4j-site</module>
<module>slf4j-converter</module>
<module>slf4j-migrator</module>
</modules>
<dependencies>

View File

@ -321,7 +321,6 @@ public class MigratorFrame extends JFrame implements ActionListener {
int returnVal = fileChooser.showOpenDialog(this);
if (returnVal == JFileChooser.APPROVE_OPTION) {
File selectedFile = fileChooser.getSelectedFile();
System.out.println(selectedFile);
folderTextField.setText(selectedFile.getAbsolutePath());
}
}

View File

@ -79,8 +79,8 @@ public class MultiGroupConversionRule implements ConversionRule {
for (int group = 1; group <= matcher.groupCount(); group++) {
replacementText = getReplacement(group);
if (replacementText != null) {
System.out.println("replacing group " + group + " : "
+ matcher.group(group) + " with " + replacementText);
//System.out.println("replacing group " + group + " : "
// + matcher.group(group) + " with " + replacementText);
replacementBuffer.append(replacementText);
} else {
replacementBuffer.append(matcher.group(group));