Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/mcs/class
diff options
context:
space:
mode:
authorGonzalo Paniagua Javier <gonzalo.mono@gmail.com>2010-07-13 02:48:08 +0400
committerGonzalo Paniagua Javier <gonzalo.mono@gmail.com>2010-07-13 02:48:08 +0400
commitfc0e187edc97db42019240605614f749bfaefbe1 (patch)
tree9feb2d88d857d91381c01aa2190ab409f169687f /mcs/class
parent47fe258f900114181f7e1f8f3dbd8fe3f9a13b95 (diff)
Fix the build
svn path=/branches/mono-2-6/mcs/; revision=160269
Diffstat (limited to 'mcs/class')
-rw-r--r--mcs/class/System.Core/System/TimeZoneInfo.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/mcs/class/System.Core/System/TimeZoneInfo.cs b/mcs/class/System.Core/System/TimeZoneInfo.cs
index 6190a0a2356..c53d3b992ff 100644
--- a/mcs/class/System.Core/System/TimeZoneInfo.cs
+++ b/mcs/class/System.Core/System/TimeZoneInfo.cs
@@ -895,7 +895,8 @@ namespace System
}
return CreateCustomTimeZone (id, baseUtcOffset, id, standardDisplayName);
} else {
- return CreateCustomTimeZone (id, baseUtcOffset, id, standardDisplayName, daylightDisplayName, ValidateRules (adjustmentRules).ToArray ());
+ return CreateCustomTimeZone (id, baseUtcOffset, id, standardDisplayName, daylightDisplayName,
+ (AdjustmentRule []) ValidateRules (adjustmentRules).ToArray ());
}
}