? Pending

User tests: Successful: Unsuccessful:

avatar Simran180
Simran180
19 Mar 2023

changed the style of the loops and if else statements in the codebase
example:

Actual result BEFORE applying this Pull Request

for(condition 1; condition 2; condition 3){
if(condition){
if(condition{
//code
} else {
//code
}
} else {
//code
}
}

Expected result AFTER applying this Pull Request

for(condition 1; condition 2; condition 3)
{
if(condition)
{
if(condition)
{
//code
}
else
{
//code
}
}
else
{
//code
}
}

I think it will be easy to understand the flow ,
The code is looking more neat and clean now.

avatar joomla-cms-bot joomla-cms-bot - change - 19 Mar 2023
Category Administration
avatar Simran180 Simran180 - open - 19 Mar 2023
avatar Simran180 Simran180 - change - 19 Mar 2023
Status New Pending
avatar Simran180 Simran180 - change - 19 Mar 2023
The description was changed
avatar Simran180 Simran180 - edited - 19 Mar 2023
avatar Quy
Quy - comment - 19 Mar 2023

Thank you for your contribution. This will undo #37686 therefore will not be accepted.

avatar Quy Quy - change - 19 Mar 2023
Status Pending Closed
Closed_Date 0000-00-00 00:00:00 2023-03-19 15:57:32
Closed_By Quy
Labels Added: ?
avatar Quy Quy - close - 19 Mar 2023

Add a Comment

Login with GitHub to post a comment