Skip to content

Commit 136350f

Browse files
author
Benoit Hudson
committed
Fix a never-ending-error bug in unit tests.
1 parent eceb57c commit 136350f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Assets/FbxExporters/Editor/UnitTests/ExporterTestBase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ void DeleteOnNextUpdate()
191191
try {
192192
Directory.Delete(filePath, recursive: true);
193193
AssetDatabase.Refresh();
194-
} catch(IOException xcp) {
194+
} catch(IOException) {
195195
// ignore -- something else must have deleted this.
196196
}
197197
}

0 commit comments

Comments
 (0)