mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-09-08 02:42:58 +00:00
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:
@ -301,4 +301,4 @@ class BlockIterator implements \Iterator{
|
||||
$this->currentBlock = 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -181,4 +181,4 @@ class Color{
|
||||
public static function fromABGR(int $code){
|
||||
return new Color($code & 0xff, ($code >> 8) & 0xff, ($code >> 16) & 0xff, ($code >> 24) & 0xff);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -151,4 +151,4 @@ class Random{
|
||||
return $this->nextInt() % $bound;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -28,4 +28,4 @@ class ReversePriorityQueue extends \SplPriorityQueue{
|
||||
public function compare($priority1, $priority2){
|
||||
return (int) -($priority1 - $priority2);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -25,4 +25,4 @@ namespace pocketmine\utils;
|
||||
|
||||
class ServerException extends \RuntimeException{
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -157,4 +157,4 @@ abstract class Terminal{
|
||||
//TODO: iOS
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -111,4 +111,4 @@ class UUID{
|
||||
public function getParts() : array{
|
||||
return $this->parts;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -126,4 +126,4 @@ class VersionString{
|
||||
return 0; //Same version
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user