summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.iOS
diff options
context:
space:
mode:
authorJason Smith <jason.smith@xamarin.com>2016-04-11 17:33:34 -0700
committerJason Smith <jason.smith@xamarin.com>2016-04-11 17:33:34 -0700
commitdf2427091536ed8065e50f7bffebbc5707971803 (patch)
treef9d9fd7be6d4ddc932dd65427298a53ce9a75e38 /Xamarin.Forms.Platform.iOS
parent16e88315e1ed643a2bde053930feb2bae149d34e (diff)
downloadxamarin-forms-df2427091536ed8065e50f7bffebbc5707971803.tar.gz
xamarin-forms-df2427091536ed8065e50f7bffebbc5707971803.tar.bz2
xamarin-forms-df2427091536ed8065e50f7bffebbc5707971803.zip
Resharper warnings are slightly different for some reason than WError, resolve these (#66)
Diffstat (limited to 'Xamarin.Forms.Platform.iOS')
-rw-r--r--Xamarin.Forms.Platform.iOS/Renderers/CarouselViewRenderer.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/Xamarin.Forms.Platform.iOS/Renderers/CarouselViewRenderer.cs b/Xamarin.Forms.Platform.iOS/Renderers/CarouselViewRenderer.cs
index d52feb70..84f57a91 100644
--- a/Xamarin.Forms.Platform.iOS/Renderers/CarouselViewRenderer.cs
+++ b/Xamarin.Forms.Platform.iOS/Renderers/CarouselViewRenderer.cs
@@ -38,7 +38,9 @@ namespace Xamarin.Forms.Platform.iOS
/// The interfaces only implement required method while the UICollectionView exposes optional methods via
/// ExportAttribute.
/// The C# method name may be aliased. For example, C# "GetCell" maps to obj-C "CellForItemAtIndexPath".
+#pragma warning disable 1584
/// <seealso cref="https://developer.apple.com/library/ios/documentation/UIKit/Reference/UICollectionView_class/" />
+#pragma warning restore 1584
/// </summary>
public class CarouselViewRenderer : ViewRenderer<CarouselView, UICollectionView>
{