Removed unused using statements

This commit is contained in:
2025-07-19 23:09:08 +02:00
parent 07fa8945dc
commit acf5106041
13 changed files with 4 additions and 43 deletions

View File

@@ -1,9 +1,5 @@
using System.Collections.Frozen;
using System.Collections.Immutable;
using System.Text;
using System.Text.Json;
using System.Text.Json.Serialization;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using Server.Exceptions;

View File

@@ -1,6 +1,5 @@
using Microsoft.AspNetCore.Mvc;
using System.Text.Json;
using System.Text.Json.Nodes;
using Shared.Models;
using Server.Helper;
namespace Server.Controllers;

View File

@@ -1,9 +1,3 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text.Json;
using System.Threading.Tasks;
using Microsoft.Extensions.AI;
using OllamaSharp;
using OllamaSharp.Models;

View File

@@ -1,6 +1,3 @@
using System;
using Server;
namespace Server;
public class Entity(Dictionary<string, string> attributes, Probmethods.probMethodDelegate probMethod, List<Datapoint> datapoints, string name)

View File

@@ -1,5 +1,4 @@
using Microsoft.Extensions.Diagnostics.HealthChecks;
using Server.Migrations;
namespace Server.HealthChecks;

View File

@@ -1,7 +1,7 @@
using System.Data.Common;
using System.Text;
namespace Server;
namespace Server.Helper;
public static class DatabaseHelper
{

View File

@@ -1,7 +1,7 @@
using System.Data.Common;
using MySql.Data.MySqlClient;
namespace Server;
namespace Server.Helper;
public class SQLHelper:IDisposable
{

View File

@@ -1,5 +1,6 @@
using System.Data.Common;
using Server.Exceptions;
using Server.Helper;
namespace Server.Migrations;

View File

@@ -1,25 +1,6 @@
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.Common;
//using System.Data.SqlClient;
//using Microsoft.Data.SqlClient;
using MySql.Data;
using MySql.Data.MySqlClient;
using System.Threading.Tasks;
using Npgsql;
using System.Collections.Generic;
using OllamaSharp;
using OllamaSharp.Models;
using System.Configuration;
using System.Data.SqlClient;
using Mysqlx.Resultset;
using System.Collections.Immutable;
using System.Text.Json;
using System.Numerics.Tensors;
using System.Security.Cryptography;
using System.Text;
using System.Collections.Concurrent;
using Server.Helper;
namespace Server;

View File

@@ -1,9 +1,7 @@
using MySql.Data.MySqlClient;
using System.Data.Common;
using OllamaSharp;
using Microsoft.IdentityModel.Tokens;
using Server.Exceptions;
using Server.Migrations;
using Server.Helper;
namespace Server;