aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDominik Schürmann <dominik@dominikschuermann.de>2014-03-26 13:42:16 +0100
committerDominik Schürmann <dominik@dominikschuermann.de>2014-03-26 13:42:16 +0100
commit0d5e99e1f04d6fd24aa66eea987f9e4178731736 (patch)
treef5c2334d8c10cebee6217a28e58c5ab39489ff95
parente5fe4245bf4ab247a8caa5e89a710a8b3269ece6 (diff)
downloadopen-keychain-0d5e99e1f04d6fd24aa66eea987f9e4178731736.tar.gz
open-keychain-0d5e99e1f04d6fd24aa66eea987f9e4178731736.tar.bz2
open-keychain-0d5e99e1f04d6fd24aa66eea987f9e4178731736.zip
Coding style
-rw-r--r--README.md10
1 files changed, 2 insertions, 8 deletions
diff --git a/README.md b/README.md
index 8c813a4e0..474bf180b 100644
--- a/README.md
+++ b/README.md
@@ -145,15 +145,9 @@ see http://help.transifex.net/features/client/index.html#user-client
* Opening braces don't go on their own line
* Field names: Non-public, non-static fields start with m.
* Acronyms are words: Treat acronyms as words in names, yielding !XmlHttpRequest, getUrl(), etc.
+* Fully Qualify Imports: Do *not* use wildcard-imports such as ``import foo.*;``
-See http://source.android.com/source/code-style.html
-
-### XML Eclipse Settings
-* XML Maximum line width 999
-* XML: Split multiple attributes each on a new line (Eclipse: Properties -> XML -> XML Files -> Editor)
-* XML: Indent using spaces with Indention size 4 (Eclipse: Properties -> XML -> XML Files -> Editor)
-
-See http://www.androidpolice.com/2009/11/04/auto-formatting-android-xml-files-with-eclipse/
+The full coding style can be found at http://source.android.com/source/code-style.html
### Automated syntax check with CheckStyle