Edited wiki page DevelopmentProperties through web user interface.
diff --git a/DevelopmentProperties.wiki b/DevelopmentProperties.wiki
index 9e7ef84..3fc8e90 100644
--- a/DevelopmentProperties.wiki
+++ b/DevelopmentProperties.wiki
@@ -19,7 +19,6 @@
 
 = Particular considerations =
 
-
   # Is the code thread safe? Read your code and check whether your code behaves well when multiple methods of an instance are executing simultaneously. Avoid settors to make classes immutable.
   # Was equals considered? 
   # Was hashCode considered?
@@ -33,4 +32,8 @@
   # Was use of System.out and System.err considered? Be very selective about putting information on these channels. Quite possibly never use them for communicating information.
   # Watch out for autoboxing and varargs producing undesireable behaviour.
   # Consider public and final modifiers on classes and methods.
-  # Add javadoc
\ No newline at end of file
+  # Add javadoc
+
+= Detailed Google Java Style guide
+
+http://google-styleguide.googlecode.com/svn/trunk/javaguide.html
\ No newline at end of file