diff --git a/Convention/[Runtime]/Config.cs b/Convention/[Runtime]/Config.cs
index 58356e4..e034b08 100644
--- a/Convention/[Runtime]/Config.cs
+++ b/Convention/[Runtime]/Config.cs
@@ -2444,33 +2444,6 @@ namespace Convention
}
}
-namespace Convention
-{
- public static partial class ConventionUtility
- {
-
- ///
- /// Unity engine function to disable the GC
- ///
- public static void GC_disable()
- {
-#if !UNITY_EDITOR
- GarbageCollector.GCMode = GarbageCollector.Mode.Disabled;
-#endif
- }
-
- ///
- /// Unity engine function to enable the GC
- ///
- public static void GC_enable()
- {
-#if !UNITY_EDITOR
- GarbageCollector.GCMode = GarbageCollector.Mode.Enabled;
-#endif
- }
- }
-}
-
namespace Convention
{
public static partial class Utility