Skip to content

Commit 180ca08

Browse files
committed
standardize imports
1 parent 8a58036 commit 180ca08

43 files changed

Lines changed: 54 additions & 70 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Analyzer/Analyzer.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
</ItemGroup>
2020

2121
<ItemGroup>
22-
<Using Include="Analyzer.Properties" />
22+
<Using Include="UnityDataTools.Analyzer.Properties" />
2323
</ItemGroup>
2424

2525
<ItemGroup>

Analyzer/AnalyzerTool.cs

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,11 @@
1-
using Analyzer.SQLite.Parsers;
2-
using Analyzer.SQLite.Writers;
3-
using Newtonsoft.Json;
4-
using Newtonsoft.Json.Linq;
5-
using System;
1+
using System;
62
using System.Collections.Generic;
73
using System.Diagnostics;
84
using System.IO;
9-
using UnityDataTools.Analyzer.Build;
105
using UnityDataTools.Analyzer.SQLite.Handlers;
11-
using UnityDataTools.FileSystem;
6+
using UnityDataTools.Analyzer.SQLite.Parsers;
7+
using UnityDataTools.Analyzer.SQLite.Parsers.Models;
8+
using UnityDataTools.Analyzer.SQLite.Writers;
129

1310
namespace UnityDataTools.Analyzer;
1411

Analyzer/Properties/Resources.Designer.cs

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Analyzer/SQLite/Commands/AbstractCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using System.Collections.Generic;
44
using System.Text;
55

6-
namespace Analyzer.SQLite.Commands
6+
namespace UnityDataTools.Analyzer.SQLite.Commands
77
{
88
internal abstract class AbstractCommand
99
{

Analyzer/SQLite/Commands/AddressablesBuildReport/AddressablesBuild.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using Microsoft.Data.Sqlite;
22
using System.Collections.Generic;
33

4-
namespace Analyzer.SQLite.Commands.AddressablesBuildReport
4+
namespace UnityDataTools.Analyzer.SQLite.Commands.AddressablesBuildReport
55
{
66
internal class AddressablesBuild : AbstractCommand
77
{

Analyzer/SQLite/Commands/AddressablesBuildReport/AddressablesBuildBundle.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using Microsoft.Data.Sqlite;
22
using System.Collections.Generic;
33

4-
namespace Analyzer.SQLite.Commands.AddressablesBuildReport
4+
namespace UnityDataTools.Analyzer.SQLite.Commands.AddressablesBuildReport
55
{
66
/* TABLE DEFINITION:
77
create table addr_build_bundles

Analyzer/SQLite/Commands/AddressablesBuildReport/AddressablesBuildBundleDependency.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using Microsoft.Data.Sqlite;
22
using System.Collections.Generic;
33

4-
namespace Analyzer.SQLite.Commands.AddressablesBuildReport
4+
namespace UnityDataTools.Analyzer.SQLite.Commands.AddressablesBuildReport
55
{
66
/* TABLE DEFINITION:
77
create table addr_build_bundle_dependencies

Analyzer/SQLite/Commands/AddressablesBuildReport/AddressablesBuildBundleDependentBundle.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using Microsoft.Data.Sqlite;
22
using System.Collections.Generic;
33

4-
namespace Analyzer.SQLite.Commands.AddressablesBuildReport
4+
namespace UnityDataTools.Analyzer.SQLite.Commands.AddressablesBuildReport
55
{
66
/* TABLE DEFINITION:
77
create table addr_build_bundle_dependent_bundles

Analyzer/SQLite/Commands/AddressablesBuildReport/AddressablesBuildBundleExpandedDependency.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using Microsoft.Data.Sqlite;
22
using System.Collections.Generic;
33

4-
namespace Analyzer.SQLite.Commands.AddressablesBuildReport
4+
namespace UnityDataTools.Analyzer.SQLite.Commands.AddressablesBuildReport
55
{
66
/* TABLE DEFINITION:
77
create table addr_build_bundle_expanded_dependencies

Analyzer/SQLite/Commands/AddressablesBuildReport/AddressablesBuildBundleFile.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using Microsoft.Data.Sqlite;
22
using System.Collections.Generic;
33

4-
namespace Analyzer.SQLite.Commands.AddressablesBuildReport
4+
namespace UnityDataTools.Analyzer.SQLite.Commands.AddressablesBuildReport
55
{
66
/* TABLE DEFINITION:
77
create table addr_build_bundle_files

0 commit comments

Comments
 (0)