summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/LogListener.cs
diff options
context:
space:
mode:
authorkingces95 <kingces95@users.noreply.github.com>2017-03-09 13:38:06 -0500
committerJason Smith <jason.smith@xamarin.com>2017-03-09 10:38:06 -0800
commitb9b9d2536ff0cd6ae4526356d663706c721e481f (patch)
tree40778d441da74f47eb910067e0dad77d15bbb34a /Xamarin.Forms.Core/LogListener.cs
parent90ece3d38d3f6d6d2bbdd28b12a29e78c0feedc4 (diff)
downloadxamarin-forms-b9b9d2536ff0cd6ae4526356d663706c721e481f.tar.gz
xamarin-forms-b9b9d2536ff0cd6ae4526356d663706c721e481f.tar.bz2
xamarin-forms-b9b9d2536ff0cd6ae4526356d663706c721e481f.zip
Add [EditorBrowsable(EditorBrowsableState.Never)] to public classes/interfaces in XF.Internals (#806)
Diffstat (limited to 'Xamarin.Forms.Core/LogListener.cs')
-rw-r--r--Xamarin.Forms.Core/LogListener.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/Xamarin.Forms.Core/LogListener.cs b/Xamarin.Forms.Core/LogListener.cs
index 66777971..a25f3702 100644
--- a/Xamarin.Forms.Core/LogListener.cs
+++ b/Xamarin.Forms.Core/LogListener.cs
@@ -1,5 +1,8 @@
+using System.ComponentModel;
+
namespace Xamarin.Forms.Internals
{
+ [EditorBrowsable(EditorBrowsableState.Never)]
public abstract class LogListener
{
public abstract void Warning(string category, string message);