You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
class MyUtility:
// used when two or more of same processes are not supposed to be executing at the same time
method public log alreadyRequestedProcess(pcProgramName as char):
return false.
end method.
end class.
Becomes this:
class MyUtility:
// used when two or more of same processes are not supposed to be executing at the same time
method public log alreadyRequestedPr:
cess(pcProgramName as char):
return false.
end method.
end class.
Still ongoing, when CRLF end of line sequence is selected and there is a single line comment, removing the line comment or changing to LF eol sequence the issue disappears.
class Class final:
//// comment
method public void something(ttSomething):
define buffer bSomething for Something.
for each ttSomething:
create bSomething.
end.
end method.
end class.
Becomes:
class Class final:
//// comment
method public void something( ttSomething):
define buffer bSomething for Something.
for each ttSomething:
create bSomething.
end.
end method.
end class.
Trying on this code it doesn't break the method name anymore:
class MyUtility:
// used when two or more of same processes are not supposed to be executing at the same time
method public log alreadyRequestedProcess(pcProgramName as char):
return false.
end method.
end class.
Example, this:
Becomes this:
This formatting issue occurs when the line ending is not set to LF (Line Feed). When set to LF, the formatting works correctly.
Also then comment is in this format /**/ formatting works correctly:
Example:
The text was updated successfully, but these errors were encountered: