@@ -38,7 +38,6 @@ public class AemInstance {
3838 private bool mShowInTaskbar = true ;
3939 private int mHeapMinSizeMb = DEFAULT_HEAP_MIN_MB ;
4040 private int mHeapMaxSizeMb = DEFAULT_HEAP_MAX_MB ;
41- private int mMaxPermSizeMb = DEFAULT_PERMSIZE_MB ;
4241 private bool mJVMDebug = false ;
4342 private int mDebugPort = 0 ;
4443 private bool mJProfiler = false ;
@@ -260,15 +259,6 @@ public int HeapMaxSizeMb {
260259 }
261260 }
262261
263- public int MaxPermSizeMb {
264- get {
265- return mMaxPermSizeMb ;
266- }
267- set {
268- mMaxPermSizeMb = value ;
269- }
270- }
271-
272262 public bool JVMDebug {
273263 get {
274264 return mJVMDebug ;
@@ -596,7 +586,6 @@ public AemInstance(RegistryKey pKey) {
596586 mShowInTaskbar = ( ( int ) pKey . GetValue ( "ShowInTaskbar" , mShowInTaskbar ? 1 : 0 ) ) != 0 ;
597587 mHeapMinSizeMb = ( int ) pKey . GetValue ( "HeapMinSizeMb" , mHeapMinSizeMb ) ;
598588 mHeapMaxSizeMb = ( int ) pKey . GetValue ( "HeapMaxSizeMb" , mHeapMaxSizeMb ) ;
599- mMaxPermSizeMb = ( int ) pKey . GetValue ( "MaxPermSizeMb" , mMaxPermSizeMb ) ;
600589 mJVMDebug = ( ( int ) pKey . GetValue ( "JVMDebug" , mJVMDebug ? 1 : 0 ) ) != 0 ;
601590 mDebugPort = ( int ) pKey . GetValue ( "DebugPort" , mDebugPort ) ;
602591 mJProfiler = ( ( int ) pKey . GetValue ( "JProfiler" , mJProfiler ? 1 : 0 ) ) != 0 ;
@@ -642,7 +631,6 @@ public void Save() {
642631 key . SetValue ( "ShowInTaskbar" , mShowInTaskbar ? 1 : 0 ) ;
643632 key . SetValue ( "HeapMinSizeMb" , mHeapMinSizeMb ) ;
644633 key . SetValue ( "HeapMaxSizeMb" , mHeapMaxSizeMb ) ;
645- key . SetValue ( "MaxPermSizeMb" , mMaxPermSizeMb ) ;
646634 key . SetValue ( "JVMDebug" , mJVMDebug ? 1 : 0 ) ;
647635 key . SetValue ( "DebugPort" , mDebugPort ) ;
648636 key . SetValue ( "JProfiler" , mJProfiler ? 1 : 0 ) ;
@@ -707,7 +695,6 @@ public AemInstance Clone() {
707695 clone . mShowInTaskbar = mShowInTaskbar ;
708696 clone . mHeapMinSizeMb = mHeapMinSizeMb ;
709697 clone . mHeapMaxSizeMb = mHeapMaxSizeMb ;
710- clone . mMaxPermSizeMb = mMaxPermSizeMb ;
711698 clone . mJVMDebug = mJVMDebug ;
712699 clone . mDebugPort = mDebugPort ;
713700 clone . mJProfiler = mJProfiler ;
0 commit comments