1
0
mirror of https://github.com/Siccity/xNode.git synced 2026-03-26 22:49:02 +08:00

Fixed formatting

This commit is contained in:
Thor Brigsted 2019-06-12 09:33:26 +02:00 committed by GitHub
parent 1927400a99
commit e2067b6845
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -58,8 +58,7 @@ namespace XNode {
// ignore all unity related assemblies
// never ignore current executing assembly
foreach (Assembly assembly in assemblies) {
if(assembly != Assembly.GetExecutingAssembly())
{
if(assembly != Assembly.GetExecutingAssembly()) {
if (assembly.FullName.StartsWith("Unity")) continue;
// unity created assemblies always have version 0.0.0
if (!assembly.FullName.Contains("Version=0.0.0")) continue;
@ -130,4 +129,4 @@ namespace XNode {
}
}
}
}
}