Merge branch 'minor-next' into major-next

This commit is contained in:
Dylan K. Taylor
2023-05-31 22:12:39 +01:00
4 changed files with 12 additions and 102 deletions

View File

@@ -314,9 +314,6 @@ class MemoryManager{
continue;
}
if(!$property->isPublic()){
$property->setAccessible(true);
}
if(!$property->isInitialized()){
continue;
}
@@ -440,9 +437,6 @@ class MemoryManager{
continue;
}
}
if(!$property->isPublic()){
$property->setAccessible(true);
}
if(!$property->isInitialized($object)){
continue;
}

View File

@@ -248,7 +248,6 @@ class CrashDump{
if(file_exists($filePath)){
$reflection = new \ReflectionClass(PluginBase::class);
$file = $reflection->getProperty("file");
$file->setAccessible(true);
foreach($this->server->getPluginManager()->getPlugins() as $plugin){
$filePath = Filesystem::cleanPath($file->getValue($plugin));
if(str_starts_with($frameCleanPath, $filePath)){