Skip to content

Commit 667d14b

Browse files
fixed return statement
Former-commit-id: 2a78680f90adfe9d4df7d29981a19a41f9c7e281
1 parent 3d55a23 commit 667d14b

File tree

1 file changed

+1
-1
lines changed
  • src/main/java/com/oracle/weblogicx/imagebuilder/builder/util

1 file changed

+1
-1
lines changed

src/main/java/com/oracle/weblogicx/imagebuilder/builder/util/ARUUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ private static String getLatestPSU(String category, String release, String userI
231231
expression = String.format(LATEST_PSU_URL, FMW_PROD_ID, release);
232232

233233
Document allPatches = HttpUtil.getXMLContent(expression, userId, password);
234-
savePatch(allPatches, userId, password);
234+
return savePatch(allPatches, userId, password);
235235
}
236236

237237
private static String getPatch(String category, String patchNumber, String userId, String password) throws

0 commit comments

Comments
 (0)