Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
jwoehr committed Sep 27, 2017
1 parent 4ca58f2 commit 64c420e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/ublu/command/CmdFile.java
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ public CmdFile() {
*/
public ArgArray doFile(ArgArray argArray) {
FUNCTIONS function = FUNCTIONS.INSTANCE;
Object o; // used for unloading tuples
// Object o; // used for unloading tuples
Boolean keyedNotSequential = null;
// Tuple fileTuple;
Tuple formatTuple = null;
Expand Down Expand Up @@ -239,7 +239,7 @@ public ArgArray doFile(ArgArray argArray) {
keyedNotSequential = false;
break;
case "-add":
function=FUNCTIONS.ADD;
function = FUNCTIONS.ADD;
pfmName = argArray.nextMaybeQuotationTuplePopStringTrim();
pfmDesc = argArray.nextMaybeQuotationTuplePopStringTrim();
break;
Expand Down Expand Up @@ -403,7 +403,7 @@ public ArgArray doFile(ArgArray argArray) {
case ADD:
if (aS400File != null) {
try {
aS400File.addPhysicalFileMember(pfmName,pfmDesc);
aS400File.addPhysicalFileMember(pfmName, pfmDesc);
} catch (IOException | AS400SecurityException | ErrorCompletingRequestException | InterruptedException ex) {
getLogger().log(Level.SEVERE,
"Encountered an exception adding member " + pfmName + " to AS400File in " + getNameAndDescription(), ex);
Expand Down

0 comments on commit 64c420e

Please sign in to comment.