Add EOF newlines where missing (bulk) (#1836)

This should solve issues with people making GitHub PRs and having the web editor messing things up. GitHub Web Editor sucks :(
This commit is contained in:
Dylan K. Taylor
2017-12-20 11:56:36 +00:00
committed by GitHub
parent 0ee78d2416
commit 4f8e4f0522
600 changed files with 600 additions and 600 deletions

View File

@@ -25,4 +25,4 @@ namespace pocketmine\level\format;
class ChunkException extends \RuntimeException{
}
}

View File

@@ -120,4 +120,4 @@ class EmptySubChunk implements SubChunkInterface{
public function fastSerialize() : string{
throw new \BadMethodCallException("Should not try to serialize empty subchunks");
}
}
}

View File

@@ -242,4 +242,4 @@ class SubChunk implements SubChunkInterface{
public function __debugInfo(){
return [];
}
}
}

View File

@@ -206,4 +206,4 @@ interface SubChunkInterface{
* @return string
*/
public function fastSerialize() : string;
}
}

View File

@@ -94,4 +94,4 @@ class ChunkRequestTask extends AsyncTask{
}
}
}
}

View File

@@ -105,4 +105,4 @@ if(!extension_loaded('pocketmine_chunkutils')){
}
}
}
}

View File

@@ -232,4 +232,4 @@ interface LevelProvider{
public function close();
}
}

View File

@@ -69,4 +69,4 @@ abstract class LevelProviderManager{
public static function getProviderByName(string $name){
return self::$providers[trim(strtolower($name))] ?? null;
}
}
}

View File

@@ -27,4 +27,4 @@ use pocketmine\level\format\ChunkException;
class UnsupportedChunkFormatException extends ChunkException{
}
}

View File

@@ -648,4 +648,4 @@ class LevelDB extends BaseLevelProvider{
$this->db->close();
$this->level = null;
}
}
}

View File

@@ -165,4 +165,4 @@ class Anvil extends McRegion{
return 256;
}
}
}

View File

@@ -27,4 +27,4 @@ namespace pocketmine\level\format\io\region;
class CorruptedRegionException extends RegionException{
}
}

View File

@@ -60,4 +60,4 @@ class PMAnvil extends Anvil{
public static function getPcWorldFormatVersion() : int{
return -1; //Not a PC format, only PocketMine-MP
}
}
}

View File

@@ -27,4 +27,4 @@ namespace pocketmine\level\format\io\region;
class RegionException extends \RuntimeException{
}
}