From 5e0dd0f7f971e9c76b460ea43f5d081ac7ed56d9 Mon Sep 17 00:00:00 2001 From: jfrijters Date: Tue, 18 Dec 2007 11:04:53 +0000 Subject: [PATCH] Made classes static. --- runtime/ByteCodeHelper.cs | 2 +- runtime/tracer.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime/ByteCodeHelper.cs b/runtime/ByteCodeHelper.cs index f8fd069a..9504ac70 100644 --- a/runtime/ByteCodeHelper.cs +++ b/runtime/ByteCodeHelper.cs @@ -30,7 +30,7 @@ using IKVM.Internal; namespace IKVM.Runtime { - public class ByteCodeHelper + public static class ByteCodeHelper { [DebuggerStepThroughAttribute] public static object multianewarray(RuntimeTypeHandle typeHandle, int[] lengths) diff --git a/runtime/tracer.cs b/runtime/tracer.cs index 80c87513..6189b79d 100644 --- a/runtime/tracer.cs +++ b/runtime/tracer.cs @@ -30,7 +30,7 @@ using System.Configuration; namespace IKVM.Internal { - public class Tracer + public static class Tracer { #if !COMPACT_FRAMEWORK public readonly static TraceSwitch Compiler = new TraceSwitch("compiler", "Static Compiler");