Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Avoid using Eclipse Auto-formatting - "Ctrl + Shift + F" for entire file while changing a part of the file. Especially for an existing file as it makes it difficult to know the exact difference by comparing revisions.


IntelliJIntelliJ code style settings can be imported from etc/intellijIdeaCodeStyle.xml

Open the Settings dialog with File -> Settings...

No Format
Select the Editor -> Code Style tab. Push the "Manage" button and then the "Import..." button
  Select either the Eclipse or the Intellij format
    Import the corresponding file from the etc directory

File encoding

Use UTF-8 file encoding and Unix line separators. Some source code files contain UTF-8 characters and will be damaged if you modify them with an editor that does not support UTF-8 encoding.

...