Skip to content

Commit f75f4be

Browse files
committed
deleted some commented out params
1 parent 96757e2 commit f75f4be

File tree

1 file changed

+4
-15
lines changed
  • integration-tests/src/test/java/oracle/kubernetes/operator/utils

1 file changed

+4
-15
lines changed

integration-tests/src/test/java/oracle/kubernetes/operator/utils/Domain.java

Lines changed: 4 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1624,21 +1624,14 @@ public void restartManagedServerUsingServerStartPolicy(String msName) throws Exc
16241624
*
16251625
* @param webappName - Web App Name to be deployed
16261626
* @param scriptName - a shell script to build WAR, EAR or JAR file and deploy the App in the
1627-
* admin pod //@param archiveExt - archive extention //@param infoDirNames - archive
1628-
* information dir location
1627+
* admin pod
16291628
* @param username - weblogic user name
16301629
* @param password - weblogc password
16311630
* @param args - optional args to add for script if needed
16321631
* @throws Exception
16331632
*/
16341633
private void callShellScriptToBuildDeployAppInPod(
1635-
String webappName,
1636-
String scriptName,
1637-
// String archiveExt,
1638-
// String infoDirNames,
1639-
String username,
1640-
String password,
1641-
String... args)
1634+
String webappName, String scriptName, String username, String password, String... args)
16421635
throws Exception {
16431636

16441637
String nodeHost = getHostNameForCurl();
@@ -1675,10 +1668,6 @@ private void callShellScriptToBuildDeployAppInPod(
16751668
.append(" ")
16761669
.append(clusterName)
16771670
.append(" ")
1678-
// .append(infoDirNames)
1679-
// .append(" ")
1680-
// .append(archiveExt)
1681-
// .append(" ")
16821671
.append(String.join(" ", args).toString())
16831672
.append("'");
16841673

@@ -1726,7 +1715,7 @@ public void buildDeployJavaAppInPod(
17261715
String scriptPathOnHost = BaseTest.getAppLocationOnHost() + "/" + scriptName;
17271716
String scriptPathInPod = BaseTest.getAppLocationInPod() + "/" + scriptName;
17281717

1729-
// Default velues to build archive file
1718+
// Default values to build archive file
17301719
final String initInfoDirName = "WEB-INF";
17311720
String archiveExt = "war";
17321721
String infoDirName = initInfoDirName;
@@ -1789,7 +1778,7 @@ public void buildDeployWebServiceAppInPod(
17891778
String scriptPathOnHost = BaseTest.getAppLocationOnHost() + "/" + scriptName;
17901779
String scriptPathInPod = BaseTest.getAppLocationInPod() + "/" + scriptName;
17911780

1792-
// Default velues to build archive file
1781+
// Default values to build archive file
17931782
final String initInfoDirName = "WEB-INF";
17941783
String archiveExt = "war";
17951784
String infoDirName = initInfoDirName;

0 commit comments

Comments
 (0)