From a0d6575ef00721d6d3e5b2cb10c2836d5f4a2e03 Mon Sep 17 00:00:00 2001 From: Christiaan Bloemendaal Date: Thu, 28 Apr 2022 22:18:32 +0200 Subject: [PATCH] fix: added newline at end of files --- Editor/Builders/AssetsItemBuilder.cs | 2 +- Editor/Builders/ClassesItemBuilder.cs | 2 +- Editor/Builders/SceneItemBuilder.cs | 2 +- Editor/Drawers/CustomObjectDrawer.Styles.cs | 2 +- Editor/Drawers/CustomObjectDrawer.cs | 2 +- Editor/Drawers/IReferenceDrawer.cs | 2 +- Editor/Drawers/RawReferenceDrawer.cs | 2 +- Editor/Drawers/ReferenceDrawer.cs | 2 +- Editor/Drawers/UnityReferenceDrawer.cs | 2 +- Editor/Items/AssetDropdownItem.cs | 2 +- Editor/Items/ClassDropdownItem.cs | 2 +- Editor/Items/IDropdownItem.cs | 2 +- Editor/Items/SceneDropdownItem.cs | 2 +- Editor/SerializableInterfacePropertyDrawer.cs | 2 +- Editor/Utilities/AdvancedDropdownItemWrapper.cs | 2 +- Editor/Utilities/IconUtility.cs | 2 +- Editor/Utilities/PropertyEditorUtility.cs | 2 +- Editor/Utilities/SerializableInterfaceAdvancedDropdown.cs | 2 +- Runtime/AssemblyInfo.cs | 2 +- Runtime/ISerializableInterface.cs | 2 +- Runtime/ReferenceMode.cs | 2 +- Runtime/SerializableInterface.cs | 2 +- 22 files changed, 22 insertions(+), 22 deletions(-) diff --git a/Editor/Builders/AssetsItemBuilder.cs b/Editor/Builders/AssetsItemBuilder.cs index b510633..a635f90 100644 --- a/Editor/Builders/AssetsItemBuilder.cs +++ b/Editor/Builders/AssetsItemBuilder.cs @@ -84,4 +84,4 @@ private AdvancedDropdownItem GetOrCreateParentItem(AdvancedDropdownItem root, st return item; } } -} \ No newline at end of file +} diff --git a/Editor/Builders/ClassesItemBuilder.cs b/Editor/Builders/ClassesItemBuilder.cs index f2e6dc4..039d926 100644 --- a/Editor/Builders/ClassesItemBuilder.cs +++ b/Editor/Builders/ClassesItemBuilder.cs @@ -75,4 +75,4 @@ private AdvancedDropdownItem GetOrCreateParentItem(Type type, AdvancedDropdownIt return splitItem; } } -} \ No newline at end of file +} diff --git a/Editor/Builders/SceneItemBuilder.cs b/Editor/Builders/SceneItemBuilder.cs index 79ae6fe..681a85f 100644 --- a/Editor/Builders/SceneItemBuilder.cs +++ b/Editor/Builders/SceneItemBuilder.cs @@ -66,4 +66,4 @@ private void CreateItemsRecursive(Transform transform, AdvancedDropdownItem pare parent.AddChild(advancedDropdownItem); } } -} \ No newline at end of file +} diff --git a/Editor/Drawers/CustomObjectDrawer.Styles.cs b/Editor/Drawers/CustomObjectDrawer.Styles.cs index 49af286..2ec82ae 100644 --- a/Editor/Drawers/CustomObjectDrawer.Styles.cs +++ b/Editor/Drawers/CustomObjectDrawer.Styles.cs @@ -40,4 +40,4 @@ public static GUIStyle SelectedLabelStyle } } } -} \ No newline at end of file +} diff --git a/Editor/Drawers/CustomObjectDrawer.cs b/Editor/Drawers/CustomObjectDrawer.cs index cdd2e30..b1931f2 100644 --- a/Editor/Drawers/CustomObjectDrawer.cs +++ b/Editor/Drawers/CustomObjectDrawer.cs @@ -111,4 +111,4 @@ private void HandleKeyDown() } } } -} \ No newline at end of file +} diff --git a/Editor/Drawers/IReferenceDrawer.cs b/Editor/Drawers/IReferenceDrawer.cs index 798e658..4a2adbe 100644 --- a/Editor/Drawers/IReferenceDrawer.cs +++ b/Editor/Drawers/IReferenceDrawer.cs @@ -7,4 +7,4 @@ internal interface IReferenceDrawer float GetHeight(); void OnGUI(Rect position); } -} \ No newline at end of file +} diff --git a/Editor/Drawers/RawReferenceDrawer.cs b/Editor/Drawers/RawReferenceDrawer.cs index c408e2e..da5a7c1 100644 --- a/Editor/Drawers/RawReferenceDrawer.cs +++ b/Editor/Drawers/RawReferenceDrawer.cs @@ -89,4 +89,4 @@ protected override void OnPropertiesClicked() } } } -} \ No newline at end of file +} diff --git a/Editor/Drawers/ReferenceDrawer.cs b/Editor/Drawers/ReferenceDrawer.cs index 647ae14..b4be152 100644 --- a/Editor/Drawers/ReferenceDrawer.cs +++ b/Editor/Drawers/ReferenceDrawer.cs @@ -95,4 +95,4 @@ private void OnItemSelected(ReferenceMode mode, object reference) protected abstract void OnPropertiesClicked(); } -} \ No newline at end of file +} diff --git a/Editor/Drawers/UnityReferenceDrawer.cs b/Editor/Drawers/UnityReferenceDrawer.cs index dbae677..f2a901b 100644 --- a/Editor/Drawers/UnityReferenceDrawer.cs +++ b/Editor/Drawers/UnityReferenceDrawer.cs @@ -33,4 +33,4 @@ protected override void OnPropertiesClicked() PropertyEditorUtility.Show(UnityReferenceProperty.objectReferenceValue); } } -} \ No newline at end of file +} diff --git a/Editor/Items/AssetDropdownItem.cs b/Editor/Items/AssetDropdownItem.cs index 9b2c5c7..a6c0da1 100644 --- a/Editor/Items/AssetDropdownItem.cs +++ b/Editor/Items/AssetDropdownItem.cs @@ -26,4 +26,4 @@ object IDropdownItem.GetValue() return AssetDatabase.LoadAssetAtPath(path); } } -} \ No newline at end of file +} diff --git a/Editor/Items/ClassDropdownItem.cs b/Editor/Items/ClassDropdownItem.cs index 30e810e..9b78820 100644 --- a/Editor/Items/ClassDropdownItem.cs +++ b/Editor/Items/ClassDropdownItem.cs @@ -26,4 +26,4 @@ object IDropdownItem.GetValue() return Activator.CreateInstance(type); } } -} \ No newline at end of file +} diff --git a/Editor/Items/IDropdownItem.cs b/Editor/Items/IDropdownItem.cs index 623d64c..d59fd74 100644 --- a/Editor/Items/IDropdownItem.cs +++ b/Editor/Items/IDropdownItem.cs @@ -5,4 +5,4 @@ internal interface IDropdownItem internal ReferenceMode Mode { get; } object GetValue(); } -} \ No newline at end of file +} diff --git a/Editor/Items/SceneDropdownItem.cs b/Editor/Items/SceneDropdownItem.cs index 2722051..929fe2d 100644 --- a/Editor/Items/SceneDropdownItem.cs +++ b/Editor/Items/SceneDropdownItem.cs @@ -24,4 +24,4 @@ object IDropdownItem.GetValue() return component; } } -} \ No newline at end of file +} diff --git a/Editor/SerializableInterfacePropertyDrawer.cs b/Editor/SerializableInterfacePropertyDrawer.cs index add823d..99eb158 100644 --- a/Editor/SerializableInterfacePropertyDrawer.cs +++ b/Editor/SerializableInterfacePropertyDrawer.cs @@ -94,4 +94,4 @@ GUIContent label } } } -} \ No newline at end of file +} diff --git a/Editor/Utilities/AdvancedDropdownItemWrapper.cs b/Editor/Utilities/AdvancedDropdownItemWrapper.cs index c91e03d..d71ee82 100644 --- a/Editor/Utilities/AdvancedDropdownItemWrapper.cs +++ b/Editor/Utilities/AdvancedDropdownItemWrapper.cs @@ -22,4 +22,4 @@ public AdvancedDropdownItemWrapper(string name) return this; } } -} \ No newline at end of file +} diff --git a/Editor/Utilities/IconUtility.cs b/Editor/Utilities/IconUtility.cs index 8a461ed..03202bc 100644 --- a/Editor/Utilities/IconUtility.cs +++ b/Editor/Utilities/IconUtility.cs @@ -85,4 +85,4 @@ public static Texture2D GetIconForObject(Object obj) } #endif } -} \ No newline at end of file +} diff --git a/Editor/Utilities/PropertyEditorUtility.cs b/Editor/Utilities/PropertyEditorUtility.cs index 0938b3d..b50e7a8 100644 --- a/Editor/Utilities/PropertyEditorUtility.cs +++ b/Editor/Utilities/PropertyEditorUtility.cs @@ -33,4 +33,4 @@ internal static void Show(Object obj) }); } } -} \ No newline at end of file +} diff --git a/Editor/Utilities/SerializableInterfaceAdvancedDropdown.cs b/Editor/Utilities/SerializableInterfaceAdvancedDropdown.cs index 90e86ea..3956a0f 100644 --- a/Editor/Utilities/SerializableInterfaceAdvancedDropdown.cs +++ b/Editor/Utilities/SerializableInterfaceAdvancedDropdown.cs @@ -82,4 +82,4 @@ protected override void ItemSelected(AdvancedDropdownItem item) } } } -} \ No newline at end of file +} diff --git a/Runtime/AssemblyInfo.cs b/Runtime/AssemblyInfo.cs index 5b2d6a2..54e5d7c 100644 --- a/Runtime/AssemblyInfo.cs +++ b/Runtime/AssemblyInfo.cs @@ -1,3 +1,3 @@ using System.Runtime.CompilerServices; -[assembly:InternalsVisibleTo("TNRD.SerializableInterface.Editor")] \ No newline at end of file +[assembly:InternalsVisibleTo("TNRD.SerializableInterface.Editor")] diff --git a/Runtime/ISerializableInterface.cs b/Runtime/ISerializableInterface.cs index 78c9865..8b0ec48 100644 --- a/Runtime/ISerializableInterface.cs +++ b/Runtime/ISerializableInterface.cs @@ -4,4 +4,4 @@ internal interface ISerializableInterface { internal object GetRawReference(); } -} \ No newline at end of file +} diff --git a/Runtime/ReferenceMode.cs b/Runtime/ReferenceMode.cs index 12d2164..1ec3c38 100644 --- a/Runtime/ReferenceMode.cs +++ b/Runtime/ReferenceMode.cs @@ -5,4 +5,4 @@ internal enum ReferenceMode Raw, Unity } -} \ No newline at end of file +} diff --git a/Runtime/SerializableInterface.cs b/Runtime/SerializableInterface.cs index ba549b8..0ba73b8 100644 --- a/Runtime/SerializableInterface.cs +++ b/Runtime/SerializableInterface.cs @@ -49,4 +49,4 @@ object ISerializableInterface.GetRawReference() return rawReference; } } -} \ No newline at end of file +}