diff options
author | Wouter van Oortmerssen <wvo@google.com> | 2016-05-23 12:24:44 -0700 |
---|---|---|
committer | Wouter van Oortmerssen <wvo@google.com> | 2016-05-23 12:24:44 -0700 |
commit | 8c0d56d55abcc0559f1472979ed31a817e678731 (patch) | |
tree | 945f0823c118000c81529c8991256c102b81381c /net | |
parent | c41a0453c106fe5ecb6e185da14ac1f4f9a1e82f (diff) | |
download | flatbuffers-8c0d56d55abcc0559f1472979ed31a817e678731.tar.gz flatbuffers-8c0d56d55abcc0559f1472979ed31a817e678731.tar.bz2 flatbuffers-8c0d56d55abcc0559f1472979ed31a817e678731.zip |
Removed BOM marker from some files.
Also removed some trailing whitespace.
Change-Id: I40bf4f776ca4d467b7ee6f2c9a7500c13700f9d5
Diffstat (limited to 'net')
-rwxr-xr-x | net/FlatBuffers/ByteBuffer.cs | 2 | ||||
-rw-r--r-- | net/FlatBuffers/FlatBufferBuilder.cs | 8 | ||||
-rw-r--r-- | net/FlatBuffers/FlatBufferConstants.cs | 2 | ||||
-rw-r--r-- | net/FlatBuffers/Properties/AssemblyInfo.cs | 4 | ||||
-rw-r--r-- | net/FlatBuffers/Struct.cs | 2 |
5 files changed, 9 insertions, 9 deletions
diff --git a/net/FlatBuffers/ByteBuffer.cs b/net/FlatBuffers/ByteBuffer.cs index 7ca491dc..5fa1ac7a 100755 --- a/net/FlatBuffers/ByteBuffer.cs +++ b/net/FlatBuffers/ByteBuffer.cs @@ -1,4 +1,4 @@ -/* +/* * Copyright 2014 Google Inc. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/net/FlatBuffers/FlatBufferBuilder.cs b/net/FlatBuffers/FlatBufferBuilder.cs index c320ea8c..590e6ac0 100644 --- a/net/FlatBuffers/FlatBufferBuilder.cs +++ b/net/FlatBuffers/FlatBufferBuilder.cs @@ -80,9 +80,9 @@ namespace FlatBuffers /// <summary> /// Gets and sets a Boolean to disable the optimization when serializing /// default values to a Table. - /// + /// /// In order to save space, fields that are set to their default value - /// don't get serialized into the buffer. + /// don't get serialized into the buffer. /// </summary> public bool ForceDefaults { get; set; } @@ -349,7 +349,7 @@ namespace FlatBuffers /// and <see cref="ForceDefaults"/> is false, the value will be skipped.</param> /// <param name="d">The default value to compare the value against</param> public void AddBool(int o, bool x, bool d) { if (ForceDefaults || x != d) { AddBool(x); Slot(o); } } - + /// <summary> /// Adds a SByte to the Table at index `o` in its vtable using the value `x` and default `d` /// </summary> @@ -358,7 +358,7 @@ namespace FlatBuffers /// and <see cref="ForceDefaults"/> is false, the value will be skipped.</param> /// <param name="d">The default value to compare the value against</param> public void AddSbyte(int o, sbyte x, sbyte d) { if (ForceDefaults || x != d) { AddSbyte(x); Slot(o); } } - + /// <summary> /// Adds a Byte to the Table at index `o` in its vtable using the value `x` and default `d` /// </summary> diff --git a/net/FlatBuffers/FlatBufferConstants.cs b/net/FlatBuffers/FlatBufferConstants.cs index 162ed192..ab3092c4 100644 --- a/net/FlatBuffers/FlatBufferConstants.cs +++ b/net/FlatBuffers/FlatBufferConstants.cs @@ -1,4 +1,4 @@ -/* +/* * Copyright 2014 Google Inc. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/net/FlatBuffers/Properties/AssemblyInfo.cs b/net/FlatBuffers/Properties/AssemblyInfo.cs index 1065ff8f..1edfac47 100644 --- a/net/FlatBuffers/Properties/AssemblyInfo.cs +++ b/net/FlatBuffers/Properties/AssemblyInfo.cs @@ -1,4 +1,4 @@ -/* +/* * Copyright 2014 Google Inc. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); @@ -26,7 +26,7 @@ using System.Runtime.InteropServices; [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("FlatBuffers")] -[assembly: AssemblyCopyright("Copyright © 2015 Google Inc")] +[assembly: AssemblyCopyright("Copyright (c) 2015 Google Inc")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] diff --git a/net/FlatBuffers/Struct.cs b/net/FlatBuffers/Struct.cs index 4cd28012..ab16f28c 100644 --- a/net/FlatBuffers/Struct.cs +++ b/net/FlatBuffers/Struct.cs @@ -1,4 +1,4 @@ -/* +/* * Copyright 2014 Google Inc. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); |