Skip to content

Commit bb02977

Browse files
committed
Merge some string literals
1 parent 2212a7b commit bb02977

File tree

2 files changed

+2
-2
lines changed
  • commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example
  • commons-vfs2-jackrabbit1/src/test/java/org/apache/commons/vfs2/provider/webdav/test

2 files changed

+2
-2
lines changed

commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/Shell.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ private void info(final String[] cmd) throws Exception {
237237
if (cmd.length > 1) {
238238
info(cmd[1]);
239239
} else {
240-
System.out.println("Default manager: \"" + mgr.getClass().getName() + "\" " + "version " + getVersion(mgr.getClass()));
240+
System.out.println("Default manager: \"" + mgr.getClass().getName() + "\" version " + getVersion(mgr.getClass()));
241241
final String[] schemes = mgr.getSchemes();
242242
final List<String> virtual = new ArrayList<>();
243243
final List<String> physical = new ArrayList<>();

commons-vfs2-jackrabbit1/src/test/java/org/apache/commons/vfs2/provider/webdav/test/JackrabbitMain.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ public void run() throws Exception {
232232
if (host == null) {
233233
host = "localhost";
234234
}
235-
message("Apache Jackrabbit is now running at " + "http://" + host + ":" + connector.getPort() + "/");
235+
message("Apache Jackrabbit is now running at http://" + host + ":" + connector.getPort() + "/");
236236
} catch (final Throwable t) {
237237
System.err.println("Unable to start the server: " + t.getMessage());
238238
System.exit(1);

0 commit comments

Comments
 (0)