9

Just opened a project that I'll be working on for work, first thing I notice is C++ like code formatting, which hurts my eyes (keep in mind this is Java)

But then decompiled Hybris classes came at me with not only that, but three newlines between methods.

I fear what I have yet to see...

Comments
  • 1
    When you are the new maintainer of the software ... make a new formatting of the code 🙂
  • 0
    @Ubergeek I wish... But I'm still working with the old guys, who like to keep to the Hybris style guide...

    Seems like I'm stuck writing poorly formatted code :(
  • 1
    What is cpp code formatting? I thought formatting is a matter of aggreement, not a property of language
  • 0
    Hybris like it this way:

    class Test
    {
    public void test()
    {
    ...
    }
    }

    Useless newline I hate it too. But my conpany insists on it too 😳🙄
Add Comment