Skip to content

Commit 50ce6f5

Browse files
committed
Tiny fix for a switch-case that couldn't be properly auto indentated
1 parent 0f872ef commit 50ce6f5

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

Plugins/AssetUsageDetector/Editor/AssetUsageDetectorSearchFunctions.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1500,6 +1500,7 @@ private void SearchVariablesWithSerializedObject( ReferenceNode referenceNode, b
15001500
break;
15011501
#endif
15021502
case SerializedPropertyType.Generic:
1503+
{
15031504
#if ASSET_USAGE_ADDRESSABLES
15041505
if( searchParameters.addressablesSupport && iterator.type.StartsWithFast( "AssetReference" ) && GetRawSerializedPropertyValue( iterator ) is AssetReference assetReference )
15051506
{
@@ -1526,6 +1527,7 @@ private void SearchVariablesWithSerializedObject( ReferenceNode referenceNode, b
15261527
}
15271528

15281529
break;
1530+
}
15291531
default:
15301532
propertyValue = null;
15311533
searchResult = null;

0 commit comments

Comments
 (0)