Menu

#144 Unexpected removal of comments

closed-fixed
None
1
2002-11-13
2002-09-03
Ray Powell
No

Jalopy (netbeans) version 0.3.1

public void standardDelete(Criterion[] crit) // criteria
(logical and)
throws SQLException
// deletion of records from this table is forbidden
{ throw new SQLException("Deletion not allowed from
person table");
}

Given the above code beofre commenting
After formatting

public void standardDelete(Criterion[] crit) // criteria
(logical and)
throws SQLException
{
throw new SQLException("Deletion not allowed
from person table");
}
The second comment has been removed
i.e. the line
// deletion of records from this table is forbidden
All comment lines at this position in a method seem to
get removed regardless of settings.
Ray Powell

Discussion

  • Marco Hunsicker

    Marco Hunsicker - 2002-09-03

    Logged In: YES
    user_id=44430

    Should be fixed with the next version.

    Thanks.

     
  • Marco Hunsicker

    Marco Hunsicker - 2002-09-03
    • assigned_to: nobody --> marcohu
     
  • Marco Hunsicker

    Marco Hunsicker - 2002-09-13
    • priority: 5 --> 1
     
  • Marco Hunsicker

    Marco Hunsicker - 2002-09-15
    • status: open --> open-fixed
     
  • Marco Hunsicker

    Marco Hunsicker - 2002-11-13
    • status: open-fixed --> closed-fixed
     

Log in to post a comment.