[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[news.eclipse.tools.jdt] Re: Correct Indentation

Sorry. Tabs displays correctly.

So, this is what I get using my code:

class a {
   static String s = "a"
   +"{"
       +"{"
       +"{"
           ;
       // comment
       }

and this is what I expect:

class a {
   static String s = "a"
       +"{"
       +"{"
       +"{"
       ;
   // comment
}