mirror of
https://github.com/opensim/opensim.git
synced 2026-08-01 14:16:07 +08:00
Renamed the new Directories. (removed the "-Source" from the end of them)
This commit is contained in:
18
OpenSim/OpenSim.Scripting/EmbeddedJVM/MainMemory.cs
Normal file
18
OpenSim/OpenSim.Scripting/EmbeddedJVM/MainMemory.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace OpenSim.Scripting.EmbeddedJVM
|
||||
{
|
||||
public class MainMemory
|
||||
{
|
||||
public Heap HeapArea;
|
||||
public MethodMemory MethodArea;
|
||||
|
||||
public MainMemory()
|
||||
{
|
||||
MethodArea = new MethodMemory();
|
||||
HeapArea = new Heap();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user