1
0
Fork 0

Removed UTF-8 BOM (#4033)

This commit is contained in:
Lukas Pioch 2017-09-19 10:34:08 +02:00 committed by Mattes D
parent b5fa96f4f8
commit c5f590d460
57 changed files with 57 additions and 57 deletions

View File

@ -1,4 +1,4 @@
# This is the top-level CMakeLists.txt file for the Cuberite project # This is the top-level CMakeLists.txt file for the Cuberite project
# #
# Use CMake to generate the build files for your platform # Use CMake to generate the build files for your platform
# #

View File

@ -1,4 +1,4 @@

// Connection.cpp // Connection.cpp
// Interfaces to the cConnection class representing a single pair of connected sockets // Interfaces to the cConnection class representing a single pair of connected sockets

View File

@ -1,4 +1,4 @@

// Connection.h // Connection.h
// Interfaces to the cConnection class representing a single pair of connected sockets // Interfaces to the cConnection class representing a single pair of connected sockets

View File

@ -1,4 +1,4 @@

// Server.h // Server.h
// Interfaces to the cServer class encapsulating the entire "server" // Interfaces to the cServer class encapsulating the entire "server"

View File

@ -1,4 +1,4 @@

Microsoft Visual Studio Solution File, Format Version 12.00 Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Express 2013 for Windows Desktop # Visual Studio Express 2013 for Windows Desktop
VisualStudioVersion = 12.0.31101.0 VisualStudioVersion = 12.0.31101.0

View File

@ -1,4 +1,4 @@

const g_DistanceBetweenSquares = 0;//.01; const g_DistanceBetweenSquares = 0;//.01;
const g_Colors = [ const g_Colors = [
"#0000FF", "#0000FF",

View File

@ -1,4 +1,4 @@

# This script includes PolarSSL, if not already included. # This script includes PolarSSL, if not already included.
# It is needed for when multiple projects reference PolarSSL. # It is needed for when multiple projects reference PolarSSL.

View File

@ -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 "ManualBindings.h" #include "ManualBindings.h"

View File

@ -1,4 +1,4 @@

// ManualBindings.h // ManualBindings.h
// Declares the cManualBindings class used as a namespace for functions exported to the Lua API manually // Declares the cManualBindings class used as a namespace for functions exported to the Lua API manually

View File

@ -1,4 +1,4 @@

// ManualBindings_World.cpp // ManualBindings_World.cpp
// Implements the manual Lua API bindings for the cWorld class // Implements the manual Lua API bindings for the cWorld class

View File

@ -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 "BeaconEntity.h" #include "BeaconEntity.h"

View File

@ -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 "MobSpawnerEntity.h" #include "MobSpawnerEntity.h"

View File

@ -1,4 +1,4 @@

// BlockBed.cpp // BlockBed.cpp
#include "Globals.h" #include "Globals.h"

View File

@ -1,4 +1,4 @@

#pragma once #pragma once
#include "FunctionRef.h" #include "FunctionRef.h"

View File

@ -1,4 +1,4 @@

// ChunkSender.h // ChunkSender.h
// Interfaces to the cChunkSender class representing the thread that waits for chunks becoming ready (loaded / generated) and sends them to clients // Interfaces to the cChunkSender class representing the thread that waits for chunks becoming ready (loaded / generated) and sends them to clients

View File

@ -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 "ClientHandle.h"
#include "Server.h" #include "Server.h"

View File

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<LocalDebuggerWorkingDirectory>../Server</LocalDebuggerWorkingDirectory> <LocalDebuggerWorkingDirectory>../Server</LocalDebuggerWorkingDirectory>

View File

@ -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 "LeashKnot.h" #include "LeashKnot.h"

View File

@ -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 "Pawn.h" #include "Pawn.h"

View File

@ -1,4 +1,4 @@

// HTTPServer.cpp // HTTPServer.cpp
// Implements the cHTTPServer class representing a HTTP webserver that uses cListenThread and cSocketThreads for processing // Implements the cHTTPServer class representing a HTTP webserver that uses cListenThread and cSocketThreads for processing

View File

@ -1,4 +1,4 @@

// HTTPServer.h // HTTPServer.h
// Declares the cHTTPServer class representing a HTTP webserver that uses cListenThread and cSocketThreads for processing // Declares the cHTTPServer class representing a HTTP webserver that uses cListenThread and cSocketThreads for processing

View File

@ -1,4 +1,4 @@

// SslHTTPConnection.cpp // SslHTTPConnection.cpp
// Implements the cSslHTTPServerConnection class representing a HTTP connection made over a SSL link // Implements the cSslHTTPServerConnection class representing a HTTP connection made over a SSL link

View File

@ -1,4 +1,4 @@

// SslHTTPServerConnection.h // SslHTTPServerConnection.h
// Declares the cSslHTTPServerConnection class representing a HTTP connection made over an SSL link // Declares the cSslHTTPServerConnection class representing a HTTP connection made over an SSL link

View File

@ -1,4 +1,4 @@

// ItemBow.h // ItemBow.h
// Declares the cItemBowHandler class representing the itemhandler for bows // Declares the cItemBowHandler class representing the itemhandler for bows

View File

@ -1,4 +1,4 @@

// TCPLinkImpl.cpp // TCPLinkImpl.cpp
// Implements the cTCPLinkImpl class implementing the TCP link functionality // Implements the cTCPLinkImpl class implementing the TCP link functionality

View File

@ -1,4 +1,4 @@

// MojangAPI.cpp // MojangAPI.cpp
// Implements the cMojangAPI class representing the various API points provided by Mojang's webservices, and a cache for their results // Implements the cMojangAPI class representing the various API points provided by Mojang's webservices, and a cache for their results

View File

@ -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 "Root.h" #include "Root.h"

View File

@ -1,4 +1,4 @@

#pragma once #pragma once
#include "RedstoneHandler.h" #include "RedstoneHandler.h"

View File

@ -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 "World.h" #include "World.h"

View File

@ -1,4 +1,4 @@

#include "Globals.h" #include "Globals.h"
#include "FireworksSerializer.h" #include "FireworksSerializer.h"
#include "WorldStorage/FastNBT.h" #include "WorldStorage/FastNBT.h"

View File

@ -1,4 +1,4 @@

// NBTChunkSerializer.h // NBTChunkSerializer.h
// Declares the cNBTChunkSerializer class that is used for saving individual chunks into NBT format used by Anvil // Declares the cNBTChunkSerializer class that is used for saving individual chunks into NBT format used by Anvil

View File

@ -1,4 +1,4 @@

// AesCfb128Decryptor.cpp // AesCfb128Decryptor.cpp
// Implements the cAesCfb128Decryptor class decrypting data using AES CFB-128 // Implements the cAesCfb128Decryptor class decrypting data using AES CFB-128

View File

@ -1,4 +1,4 @@

// AesCfb128Decryptor.h // AesCfb128Decryptor.h
// Declares the cAesCfb128Decryptor class decrypting data using AES CFB-128 // Declares the cAesCfb128Decryptor class decrypting data using AES CFB-128

View File

@ -1,4 +1,4 @@

// AesCfb128Encryptor.cpp // AesCfb128Encryptor.cpp
// Implements the cAesCfb128Encryptor class encrypting data using AES CFB-128 // Implements the cAesCfb128Encryptor class encrypting data using AES CFB-128

View File

@ -1,4 +1,4 @@

// AesCfb128Encryptor.h // AesCfb128Encryptor.h
// Declares the cAesCfb128Encryptor class encrypting data using AES CFB-128 // Declares the cAesCfb128Encryptor class encrypting data using AES CFB-128

View File

@ -1,4 +1,4 @@

// BlockingSslClientSocket.cpp // BlockingSslClientSocket.cpp
// Implements the cBlockingSslClientSocket class representing a blocking TCP socket with client SSL encryption over it // Implements the cBlockingSslClientSocket class representing a blocking TCP socket with client SSL encryption over it

View File

@ -1,4 +1,4 @@

// BlockingSslClientSocket.h // BlockingSslClientSocket.h
// Declares the cBlockingSslClientSocket class representing a blocking TCP socket with client SSL encryption over it // Declares the cBlockingSslClientSocket class representing a blocking TCP socket with client SSL encryption over it

View File

@ -1,4 +1,4 @@

// BufferedSslContext.cpp // BufferedSslContext.cpp
// Implements the cBufferedSslContext class representing a SSL context with the SSL peer data backed by a cByteBuffer // Implements the cBufferedSslContext class representing a SSL context with the SSL peer data backed by a cByteBuffer

View File

@ -1,4 +1,4 @@

// BufferedSslContext.h // BufferedSslContext.h
// Declares the cBufferedSslContext class representing a SSL context with the SSL peer data backed by a cByteBuffer // Declares the cBufferedSslContext class representing a SSL context with the SSL peer data backed by a cByteBuffer

View File

@ -1,4 +1,4 @@

// CallbackSslContext.cpp // CallbackSslContext.cpp
// Declares the cCallbackSslContext class representing a SSL context wrapper that uses callbacks to read and write SSL peer data // Declares the cCallbackSslContext class representing a SSL context wrapper that uses callbacks to read and write SSL peer data

View File

@ -1,4 +1,4 @@

// CallbackSslContext.h // CallbackSslContext.h
// Declares the cCallbackSslContext class representing a SSL context wrapper that uses callbacks to read and write SSL peer data // Declares the cCallbackSslContext class representing a SSL context wrapper that uses callbacks to read and write SSL peer data

View File

@ -1,4 +1,4 @@

// CryptoKey.cpp // CryptoKey.cpp
// Implements the cCryptoKey class representing a RSA public key in mbedTLS // Implements the cCryptoKey class representing a RSA public key in mbedTLS

View File

@ -1,4 +1,4 @@

// CryptoKey.h // CryptoKey.h
// Declares the cCryptoKey class representing a RSA public key in mbedTLS // Declares the cCryptoKey class representing a RSA public key in mbedTLS

View File

@ -1,4 +1,4 @@

// CtrDrbgContext.cpp // CtrDrbgContext.cpp
// Implements the cCtrDrbgContext class representing a wrapper over CTR-DRBG implementation in mbedTLS // Implements the cCtrDrbgContext class representing a wrapper over CTR-DRBG implementation in mbedTLS

View File

@ -1,4 +1,4 @@

// CtrDrbgContext.h // CtrDrbgContext.h
// Declares the cCtrDrbgContext class representing a wrapper over CTR-DRBG implementation in mbedTLS // Declares the cCtrDrbgContext class representing a wrapper over CTR-DRBG implementation in mbedTLS

View File

@ -1,4 +1,4 @@

// EntropyContext.cpp // EntropyContext.cpp
// Implements the cEntropyContext class representing a wrapper over entropy contexts in mbedTLS // Implements the cEntropyContext class representing a wrapper over entropy contexts in mbedTLS

View File

@ -1,4 +1,4 @@

// EntropyContext.h // EntropyContext.h
// Declares the cEntropyContext class representing a wrapper over entropy contexts in mbedTLS // Declares the cEntropyContext class representing a wrapper over entropy contexts in mbedTLS

View File

@ -1,4 +1,4 @@

// RsaPrivateKey.cpp // RsaPrivateKey.cpp
#include "Globals.h" #include "Globals.h"

View File

@ -1,4 +1,4 @@

// RsaPrivateKey.h // RsaPrivateKey.h
// Declares the cRsaPrivateKey class representing a private key for RSA operations. // Declares the cRsaPrivateKey class representing a private key for RSA operations.

View File

@ -1,4 +1,4 @@

// Sha1Checksum.cpp // Sha1Checksum.cpp
// Declares the cSha1Checksum class representing the SHA-1 checksum calculator // Declares the cSha1Checksum class representing the SHA-1 checksum calculator

View File

@ -1,4 +1,4 @@

// Sha1Checksum.h // Sha1Checksum.h
// Declares the cSha1Checksum class representing the SHA-1 checksum calculator // Declares the cSha1Checksum class representing the SHA-1 checksum calculator

View File

@ -1,4 +1,4 @@

// SslContext.cpp // SslContext.cpp
// Implements the cSslContext class that holds everything a single SSL context needs to function // Implements the cSslContext class that holds everything a single SSL context needs to function

View File

@ -1,4 +1,4 @@

// SslContext.h // SslContext.h
// Declares the cSslContext class that holds everything a single SSL context needs to function // Declares the cSslContext class that holds everything a single SSL context needs to function

View File

@ -1,4 +1,4 @@

// X509Cert.cpp // X509Cert.cpp
// Implements the cX509Cert class representing a wrapper over X509 certs in mbedTLS // Implements the cX509Cert class representing a wrapper over X509 certs in mbedTLS

View File

@ -1,4 +1,4 @@

// X509Cert.h // X509Cert.h
// Declares the cX509Cert class representing a wrapper over X509 certs in mbedTLS // Declares the cX509Cert class representing a wrapper over X509 certs in mbedTLS

View File

@ -1,4 +1,4 @@
enable_testing() enable_testing()
include_directories(${CMAKE_SOURCE_DIR}/src/) include_directories(${CMAKE_SOURCE_DIR}/src/)
include_directories(SYSTEM ${CMAKE_SOURCE_DIR}/lib/libevent/include) include_directories(SYSTEM ${CMAKE_SOURCE_DIR}/lib/libevent/include)

View File

@ -1,4 +1,4 @@
enable_testing() enable_testing()
include_directories(${CMAKE_SOURCE_DIR}/src/) include_directories(${CMAKE_SOURCE_DIR}/src/)
include_directories(SYSTEM ${CMAKE_SOURCE_DIR}/lib/libevent/include) include_directories(SYSTEM ${CMAKE_SOURCE_DIR}/lib/libevent/include)