diff options
Diffstat (limited to 'OpenSim.Scripting.EmbeddedJVM/MainMemory.cs')
-rw-r--r-- | OpenSim.Scripting.EmbeddedJVM/MainMemory.cs | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/OpenSim.Scripting.EmbeddedJVM/MainMemory.cs b/OpenSim.Scripting.EmbeddedJVM/MainMemory.cs deleted file mode 100644 index ff18f90..0000000 --- a/OpenSim.Scripting.EmbeddedJVM/MainMemory.cs +++ /dev/null | |||
@@ -1,18 +0,0 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | |||
5 | namespace OpenSim.Scripting.EmbeddedJVM | ||
6 | { | ||
7 | public class MainMemory | ||
8 | { | ||
9 | public Heap HeapArea; | ||
10 | public MethodMemory MethodArea; | ||
11 | |||
12 | public MainMemory() | ||
13 | { | ||
14 | MethodArea = new MethodMemory(); | ||
15 | HeapArea = new Heap(); | ||
16 | } | ||
17 | } | ||
18 | } | ||