Skip to content

Commit

Permalink
remove unused code
Browse files Browse the repository at this point in the history
  • Loading branch information
Haruma-K committed Jan 18, 2024
1 parent 736fcea commit bb4b626
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using System;
using System.Linq;
using UnityEditor;

namespace SmartAddresser.Editor.Foundation.AssetDatabaseAdapter
Expand All @@ -8,9 +7,8 @@ public sealed class AssetDatabaseAdapter : IAssetDatabaseAdapter
{
public string[] GetAllAssetPaths()
{
var allAssetPaths = AssetDatabase.GetAllAssetPaths().ToList();
allAssetPaths = allAssetPaths.OrderBy(a => Guid.NewGuid()).ToList();
return allAssetPaths.ToArray();
var allAssetPaths = AssetDatabase.GetAllAssetPaths();
return allAssetPaths;
}

public string GUIDToAssetPath(string guid)
Expand Down

0 comments on commit bb4b626

Please sign in to comment.