We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9523a3d commit 6c1c4ffCopy full SHA for 6c1c4ff
VisualPinball.Unity/VisualPinball.Unity.Editor/Import/VpxPostProcessor.cs
@@ -15,7 +15,6 @@
15
// along with this program. If not, see <https://www.gnu.org/licenses/>.
16
17
using System.IO;
18
-using System.Web.WebPages;
19
using UnityEditor;
20
using UnityEditor.Presets;
21
@@ -27,7 +26,7 @@ public class VpxPostProcessor : AssetPostprocessor
27
26
28
private void OnPreprocessAsset()
29
{
30
- if (assetPath == null || assetPath.IsEmpty()) {
+ if (string.IsNullOrEmpty(assetPath)) {
31
return;
32
}
33
0 commit comments