mirror of https://github.com/qos-ch/slf4j
- renaming slf4j-converter module to slf4j-migrator
This commit is contained in:
parent
fc9953ecd0
commit
5e411709ec
2
pom.xml
2
pom.xml
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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());
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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));
|
||||
|
|
|
|||
Loading…
Reference in New Issue