Browse Source

formatting cleanup

Brian Beard 11 years ago
parent
commit
781c820f67
1 changed files with 4 additions and 1 deletions
  1. 4 1
      Jint/Native/Date/DatePrototype.cs

+ 4 - 1
Jint/Native/Date/DatePrototype.cs

@@ -832,7 +832,10 @@ namespace Jint.Native.Date
 
         public double LocalTza
         {
-            get { return Engine.Options.GetLocalTimeZone().BaseUtcOffset.TotalMilliseconds; }
+            get
+            {
+                return Engine.Options.GetLocalTimeZone().BaseUtcOffset.TotalMilliseconds;
+            }
         }
 
         public double DaylightSavingTa(double t)