formatting
if (logger.isInfoEnabled ()) {
logger.info ("CREATING AN INSTANCE OF [ "+ this+" ] ");
}
when ctrlaltl is pressed ends up as
if (logger.isInfoEnabled ()) {
logger.info ("CREATING AN INSTANCE OF "+ t his+" ] ");
}
as the above many formatting issues in this build
even javadocs are getting jumbled up
Please sign in to leave a comment.
Known problem, fixed.
-
Maxim Shafirov
http://www.jetbrains.com
"Develop with pleasure!"
Regarding formatting...
In JavaScript, comments are indented 1 tab less than code.
For example:
function foo() {
// Comment
var a = true;
if (a) {
// Comment
var b = 'yes';
}
}
Amnon
Maxim Shafirov (JetBrains) wrote:
>> if (logger.isInfoEnabled ()) {
>> logger.info ("CREATING AN INSTANCE OF [ "+ this+" ] ");
>> }
>> when ctrlaltl is pressed ends up as
>>
>> if (logger.isInfoEnabled ()) {
>> logger.info ("CREATING AN INSTANCE OF "+ t his+" ] ");
>> }
>> as the above many formatting issues in this build
>> even javadocs are getting jumbled up