Updated Branches: refs/heads/sqoop2 47f59f9ac -> 115db84e3
SQOOP-759: Loading client resource file is failing on ResourceBundle not found exception (Jarek Jarcec Cecho via Cheolsoo Park) Project: http://git-wip-us.apache.org/repos/asf/sqoop/repo Commit: http://git-wip-us.apache.org/repos/asf/sqoop/commit/115db84e Tree: http://git-wip-us.apache.org/repos/asf/sqoop/tree/115db84e Diff: http://git-wip-us.apache.org/repos/asf/sqoop/diff/115db84e Branch: refs/heads/sqoop2 Commit: 115db84e308eefd028a007db64b76c972498e680 Parents: 47f59f9 Author: Cheolsoo Park <[email protected]> Authored: Wed Dec 12 13:21:47 2012 -0800 Committer: Cheolsoo Park <[email protected]> Committed: Wed Dec 12 13:21:47 2012 -0800 ---------------------------------------------------------------------- .../org/apache/sqoop/client/shell/SqoopShell.java | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/sqoop/blob/115db84e/client/src/main/java/org/apache/sqoop/client/shell/SqoopShell.java ---------------------------------------------------------------------- diff --git a/client/src/main/java/org/apache/sqoop/client/shell/SqoopShell.java b/client/src/main/java/org/apache/sqoop/client/shell/SqoopShell.java index 6b632cb..9fb5f03 100644 --- a/client/src/main/java/org/apache/sqoop/client/shell/SqoopShell.java +++ b/client/src/main/java/org/apache/sqoop/client/shell/SqoopShell.java @@ -113,8 +113,7 @@ public final class SqoopShell { shell.getIo().out.println(MessageFormat.format(clientResource.getString (Constants.RES_SQOOP_PROMPT_SHELL_LOADRC), RC_FILE)); interpretFileContent(rcFile, shell); - shell.getIo().out.println(clientResource.getString(clientResource.getString - (Constants.RES_SQOOP_PROMPT_SHELL_LOADEDRC))); + shell.getIo().out.println(clientResource.getString(Constants.RES_SQOOP_PROMPT_SHELL_LOADEDRC)); } if (args.length == 0) {
