(self)
| 120 | ] |
| 121 | |
| 122 | def resetToDefault(self): |
| 123 | self.oldMinMem: int |
| 124 | self.oldMaxMem: int |
| 125 | self.oldCorePath: str = "" |
| 126 | self.oldCoreFileName: str = "" |
| 127 | self.oldSelectedJavaPath: str = "" |
| 128 | self.oldSelectedJavaVersion: str = "" |
| 129 | self.oldSemUnit: str = "" |
| 130 | self.oldJVMArg: list[str] = [""] |
| 131 | self.oldServerName: str = "" |
| 132 | self.oldConsoleOutputDeEncoding: str = "follow" |
| 133 | self.oldConsoleInputDeEncoding: str = "follow" |
| 134 | self.oldIcon: str = "Grass.png" |
| 135 | self.icon: str = "Grass.png" |
| 136 | super().resetToDefault() |
| 137 | |
| 138 | |
| 139 | class GlobalMCSL2Variables: |
nothing calls this directly
no test coverage detected