From c5f590d460f75e91d428ecd7758d1bb0910c0942 Mon Sep 17 00:00:00 2001 From: Lukas Pioch Date: Tue, 19 Sep 2017 10:34:08 +0200 Subject: Removed UTF-8 BOM (#4033) --- src/Bindings/ManualBindings.cpp | 2 +- src/Bindings/ManualBindings.h | 2 +- src/Bindings/ManualBindings_World.cpp | 2 +- src/BlockEntities/BeaconEntity.cpp | 2 +- src/BlockEntities/MobSpawnerEntity.cpp | 2 +- src/Blocks/BlockBed.cpp | 2 +- src/Blocks/WorldInterface.h | 2 +- src/ChunkSender.h | 2 +- src/ClientHandle.cpp | 2 +- src/Cuberite.vcxproj.user | 2 +- src/Entities/LeashKnot.cpp | 2 +- src/Entities/Pawn.cpp | 2 +- src/HTTP/HTTPServer.cpp | 2 +- src/HTTP/HTTPServer.h | 2 +- src/HTTP/SslHTTPServerConnection.cpp | 2 +- src/HTTP/SslHTTPServerConnection.h | 2 +- src/Items/ItemBow.h | 2 +- src/OSSupport/TCPLinkImpl.cpp | 2 +- src/Protocol/MojangAPI.cpp | 2 +- src/Root.cpp | 2 +- src/Simulator/IncrementalRedstoneSimulator/TrappedChestHandler.h | 2 +- src/World.cpp | 2 +- src/WorldStorage/FireworksSerializer.cpp | 2 +- src/WorldStorage/NBTChunkSerializer.h | 2 +- src/mbedTLS++/AesCfb128Decryptor.cpp | 2 +- src/mbedTLS++/AesCfb128Decryptor.h | 2 +- src/mbedTLS++/AesCfb128Encryptor.cpp | 2 +- src/mbedTLS++/AesCfb128Encryptor.h | 2 +- src/mbedTLS++/BlockingSslClientSocket.cpp | 2 +- src/mbedTLS++/BlockingSslClientSocket.h | 2 +- src/mbedTLS++/BufferedSslContext.cpp | 2 +- src/mbedTLS++/BufferedSslContext.h | 2 +- src/mbedTLS++/CallbackSslContext.cpp | 2 +- src/mbedTLS++/CallbackSslContext.h | 2 +- src/mbedTLS++/CryptoKey.cpp | 2 +- src/mbedTLS++/CryptoKey.h | 2 +- src/mbedTLS++/CtrDrbgContext.cpp | 2 +- src/mbedTLS++/CtrDrbgContext.h | 2 +- src/mbedTLS++/EntropyContext.cpp | 2 +- src/mbedTLS++/EntropyContext.h | 2 +- src/mbedTLS++/RsaPrivateKey.cpp | 2 +- src/mbedTLS++/RsaPrivateKey.h | 2 +- src/mbedTLS++/Sha1Checksum.cpp | 2 +- src/mbedTLS++/Sha1Checksum.h | 2 +- src/mbedTLS++/SslContext.cpp | 2 +- src/mbedTLS++/SslContext.h | 2 +- src/mbedTLS++/X509Cert.cpp | 2 +- src/mbedTLS++/X509Cert.h | 2 +- 48 files changed, 48 insertions(+), 48 deletions(-) (limited to 'src') diff --git a/src/Bindings/ManualBindings.cpp b/src/Bindings/ManualBindings.cpp index 5f8a3507d..becaa872a 100644 --- a/src/Bindings/ManualBindings.cpp +++ b/src/Bindings/ManualBindings.cpp @@ -1,4 +1,4 @@ - + #include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules #include "ManualBindings.h" diff --git a/src/Bindings/ManualBindings.h b/src/Bindings/ManualBindings.h index 0272e993b..cfdca7597 100644 --- a/src/Bindings/ManualBindings.h +++ b/src/Bindings/ManualBindings.h @@ -1,4 +1,4 @@ - + // ManualBindings.h // Declares the cManualBindings class used as a namespace for functions exported to the Lua API manually diff --git a/src/Bindings/ManualBindings_World.cpp b/src/Bindings/ManualBindings_World.cpp index 826439e3f..3145da9e4 100644 --- a/src/Bindings/ManualBindings_World.cpp +++ b/src/Bindings/ManualBindings_World.cpp @@ -1,4 +1,4 @@ - + // ManualBindings_World.cpp // Implements the manual Lua API bindings for the cWorld class diff --git a/src/BlockEntities/BeaconEntity.cpp b/src/BlockEntities/BeaconEntity.cpp index 1d088a56f..763fc6d20 100644 --- a/src/BlockEntities/BeaconEntity.cpp +++ b/src/BlockEntities/BeaconEntity.cpp @@ -1,4 +1,4 @@ - + #include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules #include "BeaconEntity.h" diff --git a/src/BlockEntities/MobSpawnerEntity.cpp b/src/BlockEntities/MobSpawnerEntity.cpp index 8a4cc4d38..90534216a 100644 --- a/src/BlockEntities/MobSpawnerEntity.cpp +++ b/src/BlockEntities/MobSpawnerEntity.cpp @@ -1,4 +1,4 @@ - + #include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules #include "MobSpawnerEntity.h" diff --git a/src/Blocks/BlockBed.cpp b/src/Blocks/BlockBed.cpp index 0032ec079..d9199846a 100644 --- a/src/Blocks/BlockBed.cpp +++ b/src/Blocks/BlockBed.cpp @@ -1,4 +1,4 @@ - + // BlockBed.cpp #include "Globals.h" diff --git a/src/Blocks/WorldInterface.h b/src/Blocks/WorldInterface.h index 1619a8fce..19c520ece 100644 --- a/src/Blocks/WorldInterface.h +++ b/src/Blocks/WorldInterface.h @@ -1,4 +1,4 @@ - + #pragma once #include "FunctionRef.h" diff --git a/src/ChunkSender.h b/src/ChunkSender.h index 5263e4df5..a17dfcab2 100644 --- a/src/ChunkSender.h +++ b/src/ChunkSender.h @@ -1,4 +1,4 @@ - + // ChunkSender.h // Interfaces to the cChunkSender class representing the thread that waits for chunks becoming ready (loaded / generated) and sends them to clients diff --git a/src/ClientHandle.cpp b/src/ClientHandle.cpp index 6a3e47d94..e3bba6b08 100644 --- a/src/ClientHandle.cpp +++ b/src/ClientHandle.cpp @@ -1,4 +1,4 @@ -#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules +#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules #include "ClientHandle.h" #include "Server.h" diff --git a/src/Cuberite.vcxproj.user b/src/Cuberite.vcxproj.user index 7ebd19d9b..468689da9 100644 --- a/src/Cuberite.vcxproj.user +++ b/src/Cuberite.vcxproj.user @@ -1,4 +1,4 @@ - + ../Server diff --git a/src/Entities/LeashKnot.cpp b/src/Entities/LeashKnot.cpp index 51002531d..c251f9e9d 100644 --- a/src/Entities/LeashKnot.cpp +++ b/src/Entities/LeashKnot.cpp @@ -1,4 +1,4 @@ - + #include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules #include "LeashKnot.h" diff --git a/src/Entities/Pawn.cpp b/src/Entities/Pawn.cpp index a116f97e3..b5769f430 100644 --- a/src/Entities/Pawn.cpp +++ b/src/Entities/Pawn.cpp @@ -1,4 +1,4 @@ - + #include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules #include "Pawn.h" diff --git a/src/HTTP/HTTPServer.cpp b/src/HTTP/HTTPServer.cpp index 24c09aa38..aff2331a6 100644 --- a/src/HTTP/HTTPServer.cpp +++ b/src/HTTP/HTTPServer.cpp @@ -1,4 +1,4 @@ - + // HTTPServer.cpp // Implements the cHTTPServer class representing a HTTP webserver that uses cListenThread and cSocketThreads for processing diff --git a/src/HTTP/HTTPServer.h b/src/HTTP/HTTPServer.h index a2d5d84fc..a70d41069 100644 --- a/src/HTTP/HTTPServer.h +++ b/src/HTTP/HTTPServer.h @@ -1,4 +1,4 @@ - + // HTTPServer.h // Declares the cHTTPServer class representing a HTTP webserver that uses cListenThread and cSocketThreads for processing diff --git a/src/HTTP/SslHTTPServerConnection.cpp b/src/HTTP/SslHTTPServerConnection.cpp index 99fb1b956..20554708a 100644 --- a/src/HTTP/SslHTTPServerConnection.cpp +++ b/src/HTTP/SslHTTPServerConnection.cpp @@ -1,4 +1,4 @@ - + // SslHTTPConnection.cpp // Implements the cSslHTTPServerConnection class representing a HTTP connection made over a SSL link diff --git a/src/HTTP/SslHTTPServerConnection.h b/src/HTTP/SslHTTPServerConnection.h index 894a2cc4a..6fd3ff309 100644 --- a/src/HTTP/SslHTTPServerConnection.h +++ b/src/HTTP/SslHTTPServerConnection.h @@ -1,4 +1,4 @@ - + // SslHTTPServerConnection.h // Declares the cSslHTTPServerConnection class representing a HTTP connection made over an SSL link diff --git a/src/Items/ItemBow.h b/src/Items/ItemBow.h index 67ea9f16f..71f5bc378 100644 --- a/src/Items/ItemBow.h +++ b/src/Items/ItemBow.h @@ -1,4 +1,4 @@ - + // ItemBow.h // Declares the cItemBowHandler class representing the itemhandler for bows diff --git a/src/OSSupport/TCPLinkImpl.cpp b/src/OSSupport/TCPLinkImpl.cpp index 4aba89e5c..496e264be 100644 --- a/src/OSSupport/TCPLinkImpl.cpp +++ b/src/OSSupport/TCPLinkImpl.cpp @@ -1,4 +1,4 @@ - + // TCPLinkImpl.cpp // Implements the cTCPLinkImpl class implementing the TCP link functionality diff --git a/src/Protocol/MojangAPI.cpp b/src/Protocol/MojangAPI.cpp index 0b14d1cac..5aa7f58db 100644 --- a/src/Protocol/MojangAPI.cpp +++ b/src/Protocol/MojangAPI.cpp @@ -1,4 +1,4 @@ - + // MojangAPI.cpp // Implements the cMojangAPI class representing the various API points provided by Mojang's webservices, and a cache for their results diff --git a/src/Root.cpp b/src/Root.cpp index ad54a075c..39ba1acc5 100644 --- a/src/Root.cpp +++ b/src/Root.cpp @@ -1,4 +1,4 @@ - + #include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules #include "Root.h" diff --git a/src/Simulator/IncrementalRedstoneSimulator/TrappedChestHandler.h b/src/Simulator/IncrementalRedstoneSimulator/TrappedChestHandler.h index 80e55faec..ea0eaa900 100644 --- a/src/Simulator/IncrementalRedstoneSimulator/TrappedChestHandler.h +++ b/src/Simulator/IncrementalRedstoneSimulator/TrappedChestHandler.h @@ -1,4 +1,4 @@ - + #pragma once #include "RedstoneHandler.h" diff --git a/src/World.cpp b/src/World.cpp index 086596eb3..11c6d28a3 100644 --- a/src/World.cpp +++ b/src/World.cpp @@ -1,4 +1,4 @@ - + #include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules #include "World.h" diff --git a/src/WorldStorage/FireworksSerializer.cpp b/src/WorldStorage/FireworksSerializer.cpp index 0398f4da8..91ef35544 100644 --- a/src/WorldStorage/FireworksSerializer.cpp +++ b/src/WorldStorage/FireworksSerializer.cpp @@ -1,4 +1,4 @@ - + #include "Globals.h" #include "FireworksSerializer.h" #include "WorldStorage/FastNBT.h" diff --git a/src/WorldStorage/NBTChunkSerializer.h b/src/WorldStorage/NBTChunkSerializer.h index 50d98a518..101384739 100644 --- a/src/WorldStorage/NBTChunkSerializer.h +++ b/src/WorldStorage/NBTChunkSerializer.h @@ -1,4 +1,4 @@ - + // NBTChunkSerializer.h // Declares the cNBTChunkSerializer class that is used for saving individual chunks into NBT format used by Anvil diff --git a/src/mbedTLS++/AesCfb128Decryptor.cpp b/src/mbedTLS++/AesCfb128Decryptor.cpp index 78a7ab9c5..0a5896e52 100644 --- a/src/mbedTLS++/AesCfb128Decryptor.cpp +++ b/src/mbedTLS++/AesCfb128Decryptor.cpp @@ -1,4 +1,4 @@ - + // AesCfb128Decryptor.cpp // Implements the cAesCfb128Decryptor class decrypting data using AES CFB-128 diff --git a/src/mbedTLS++/AesCfb128Decryptor.h b/src/mbedTLS++/AesCfb128Decryptor.h index 54c5536ea..99d479381 100644 --- a/src/mbedTLS++/AesCfb128Decryptor.h +++ b/src/mbedTLS++/AesCfb128Decryptor.h @@ -1,4 +1,4 @@ - + // AesCfb128Decryptor.h // Declares the cAesCfb128Decryptor class decrypting data using AES CFB-128 diff --git a/src/mbedTLS++/AesCfb128Encryptor.cpp b/src/mbedTLS++/AesCfb128Encryptor.cpp index 11582fc19..a7b423a77 100644 --- a/src/mbedTLS++/AesCfb128Encryptor.cpp +++ b/src/mbedTLS++/AesCfb128Encryptor.cpp @@ -1,4 +1,4 @@ - + // AesCfb128Encryptor.cpp // Implements the cAesCfb128Encryptor class encrypting data using AES CFB-128 diff --git a/src/mbedTLS++/AesCfb128Encryptor.h b/src/mbedTLS++/AesCfb128Encryptor.h index 6bfa6b5c9..8048e2d61 100644 --- a/src/mbedTLS++/AesCfb128Encryptor.h +++ b/src/mbedTLS++/AesCfb128Encryptor.h @@ -1,4 +1,4 @@ - + // AesCfb128Encryptor.h // Declares the cAesCfb128Encryptor class encrypting data using AES CFB-128 diff --git a/src/mbedTLS++/BlockingSslClientSocket.cpp b/src/mbedTLS++/BlockingSslClientSocket.cpp index 6f765f607..9267975cb 100644 --- a/src/mbedTLS++/BlockingSslClientSocket.cpp +++ b/src/mbedTLS++/BlockingSslClientSocket.cpp @@ -1,4 +1,4 @@ - + // BlockingSslClientSocket.cpp // Implements the cBlockingSslClientSocket class representing a blocking TCP socket with client SSL encryption over it diff --git a/src/mbedTLS++/BlockingSslClientSocket.h b/src/mbedTLS++/BlockingSslClientSocket.h index 24ee32680..32c606535 100644 --- a/src/mbedTLS++/BlockingSslClientSocket.h +++ b/src/mbedTLS++/BlockingSslClientSocket.h @@ -1,4 +1,4 @@ - + // BlockingSslClientSocket.h // Declares the cBlockingSslClientSocket class representing a blocking TCP socket with client SSL encryption over it diff --git a/src/mbedTLS++/BufferedSslContext.cpp b/src/mbedTLS++/BufferedSslContext.cpp index 5cdf04323..88b66c592 100644 --- a/src/mbedTLS++/BufferedSslContext.cpp +++ b/src/mbedTLS++/BufferedSslContext.cpp @@ -1,4 +1,4 @@ - + // BufferedSslContext.cpp // Implements the cBufferedSslContext class representing a SSL context with the SSL peer data backed by a cByteBuffer diff --git a/src/mbedTLS++/BufferedSslContext.h b/src/mbedTLS++/BufferedSslContext.h index 9c9dd8f73..6facb5915 100644 --- a/src/mbedTLS++/BufferedSslContext.h +++ b/src/mbedTLS++/BufferedSslContext.h @@ -1,4 +1,4 @@ - + // BufferedSslContext.h // Declares the cBufferedSslContext class representing a SSL context with the SSL peer data backed by a cByteBuffer diff --git a/src/mbedTLS++/CallbackSslContext.cpp b/src/mbedTLS++/CallbackSslContext.cpp index 26bcec2ff..b3e08a2cd 100644 --- a/src/mbedTLS++/CallbackSslContext.cpp +++ b/src/mbedTLS++/CallbackSslContext.cpp @@ -1,4 +1,4 @@ - + // CallbackSslContext.cpp // Declares the cCallbackSslContext class representing a SSL context wrapper that uses callbacks to read and write SSL peer data diff --git a/src/mbedTLS++/CallbackSslContext.h b/src/mbedTLS++/CallbackSslContext.h index da1abb707..abf4eefd7 100644 --- a/src/mbedTLS++/CallbackSslContext.h +++ b/src/mbedTLS++/CallbackSslContext.h @@ -1,4 +1,4 @@ - + // CallbackSslContext.h // Declares the cCallbackSslContext class representing a SSL context wrapper that uses callbacks to read and write SSL peer data diff --git a/src/mbedTLS++/CryptoKey.cpp b/src/mbedTLS++/CryptoKey.cpp index 4ebb0f300..d9069e4e6 100644 --- a/src/mbedTLS++/CryptoKey.cpp +++ b/src/mbedTLS++/CryptoKey.cpp @@ -1,4 +1,4 @@ - + // CryptoKey.cpp // Implements the cCryptoKey class representing a RSA public key in mbedTLS diff --git a/src/mbedTLS++/CryptoKey.h b/src/mbedTLS++/CryptoKey.h index 1a74090ac..5615d57d0 100644 --- a/src/mbedTLS++/CryptoKey.h +++ b/src/mbedTLS++/CryptoKey.h @@ -1,4 +1,4 @@ - + // CryptoKey.h // Declares the cCryptoKey class representing a RSA public key in mbedTLS diff --git a/src/mbedTLS++/CtrDrbgContext.cpp b/src/mbedTLS++/CtrDrbgContext.cpp index bd4a55000..a2b9ee2dc 100644 --- a/src/mbedTLS++/CtrDrbgContext.cpp +++ b/src/mbedTLS++/CtrDrbgContext.cpp @@ -1,4 +1,4 @@ - + // CtrDrbgContext.cpp // Implements the cCtrDrbgContext class representing a wrapper over CTR-DRBG implementation in mbedTLS diff --git a/src/mbedTLS++/CtrDrbgContext.h b/src/mbedTLS++/CtrDrbgContext.h index 21d786c2e..fe67504a7 100644 --- a/src/mbedTLS++/CtrDrbgContext.h +++ b/src/mbedTLS++/CtrDrbgContext.h @@ -1,4 +1,4 @@ - + // CtrDrbgContext.h // Declares the cCtrDrbgContext class representing a wrapper over CTR-DRBG implementation in mbedTLS diff --git a/src/mbedTLS++/EntropyContext.cpp b/src/mbedTLS++/EntropyContext.cpp index aea056f4e..a5cdcb89e 100644 --- a/src/mbedTLS++/EntropyContext.cpp +++ b/src/mbedTLS++/EntropyContext.cpp @@ -1,4 +1,4 @@ - + // EntropyContext.cpp // Implements the cEntropyContext class representing a wrapper over entropy contexts in mbedTLS diff --git a/src/mbedTLS++/EntropyContext.h b/src/mbedTLS++/EntropyContext.h index 37b6f120e..1c1695340 100644 --- a/src/mbedTLS++/EntropyContext.h +++ b/src/mbedTLS++/EntropyContext.h @@ -1,4 +1,4 @@ - + // EntropyContext.h // Declares the cEntropyContext class representing a wrapper over entropy contexts in mbedTLS diff --git a/src/mbedTLS++/RsaPrivateKey.cpp b/src/mbedTLS++/RsaPrivateKey.cpp index 3dfb3bac3..94c7b38eb 100644 --- a/src/mbedTLS++/RsaPrivateKey.cpp +++ b/src/mbedTLS++/RsaPrivateKey.cpp @@ -1,4 +1,4 @@ - + // RsaPrivateKey.cpp #include "Globals.h" diff --git a/src/mbedTLS++/RsaPrivateKey.h b/src/mbedTLS++/RsaPrivateKey.h index 7be0152b7..63e648b60 100644 --- a/src/mbedTLS++/RsaPrivateKey.h +++ b/src/mbedTLS++/RsaPrivateKey.h @@ -1,4 +1,4 @@ - + // RsaPrivateKey.h // Declares the cRsaPrivateKey class representing a private key for RSA operations. diff --git a/src/mbedTLS++/Sha1Checksum.cpp b/src/mbedTLS++/Sha1Checksum.cpp index 9c82d92fe..9671b8d2b 100644 --- a/src/mbedTLS++/Sha1Checksum.cpp +++ b/src/mbedTLS++/Sha1Checksum.cpp @@ -1,4 +1,4 @@ - + // Sha1Checksum.cpp // Declares the cSha1Checksum class representing the SHA-1 checksum calculator diff --git a/src/mbedTLS++/Sha1Checksum.h b/src/mbedTLS++/Sha1Checksum.h index 43180e531..f85f5e8b5 100644 --- a/src/mbedTLS++/Sha1Checksum.h +++ b/src/mbedTLS++/Sha1Checksum.h @@ -1,4 +1,4 @@ - + // Sha1Checksum.h // Declares the cSha1Checksum class representing the SHA-1 checksum calculator diff --git a/src/mbedTLS++/SslContext.cpp b/src/mbedTLS++/SslContext.cpp index e86da3fd2..679362c7a 100644 --- a/src/mbedTLS++/SslContext.cpp +++ b/src/mbedTLS++/SslContext.cpp @@ -1,4 +1,4 @@ - + // SslContext.cpp // Implements the cSslContext class that holds everything a single SSL context needs to function diff --git a/src/mbedTLS++/SslContext.h b/src/mbedTLS++/SslContext.h index c51a9f149..d015b6587 100644 --- a/src/mbedTLS++/SslContext.h +++ b/src/mbedTLS++/SslContext.h @@ -1,4 +1,4 @@ - + // SslContext.h // Declares the cSslContext class that holds everything a single SSL context needs to function diff --git a/src/mbedTLS++/X509Cert.cpp b/src/mbedTLS++/X509Cert.cpp index 1e51dd2b7..4dd998f00 100644 --- a/src/mbedTLS++/X509Cert.cpp +++ b/src/mbedTLS++/X509Cert.cpp @@ -1,4 +1,4 @@ - + // X509Cert.cpp // Implements the cX509Cert class representing a wrapper over X509 certs in mbedTLS diff --git a/src/mbedTLS++/X509Cert.h b/src/mbedTLS++/X509Cert.h index 4234308ff..126b7387a 100644 --- a/src/mbedTLS++/X509Cert.h +++ b/src/mbedTLS++/X509Cert.h @@ -1,4 +1,4 @@ - + // X509Cert.h // Declares the cX509Cert class representing a wrapper over X509 certs in mbedTLS -- cgit v1.2.3