Reflowed comments and removed commented out code (#735)

This commit is contained in:
Tyler Veness
2017-11-16 00:33:51 -08:00
committed by Peter Johnson
parent 1e8d18b328
commit c663d7cd16
103 changed files with 784 additions and 778 deletions

View File

@@ -17,7 +17,7 @@
using namespace frc;
/** The Preferences table name */
// The Preferences table name
static llvm::StringRef kTableName{"Preferences"};
Preferences::Preferences()
@@ -124,8 +124,8 @@ int64_t Preferences::GetLong(llvm::StringRef key, int64_t defaultValue) {
/**
* Puts the given string into the preferences table.
*
* <p>The value may not have quotation marks, nor may the key
* have any whitespace nor an equals sign</p>
* The value may not have quotation marks, nor may the key have any whitespace
* nor an equals sign.
*
* @param key the key
* @param value the value
@@ -139,7 +139,7 @@ void Preferences::PutString(llvm::StringRef key, llvm::StringRef value) {
/**
* Puts the given int into the preferences table.
*
* <p>The key may not have any whitespace nor an equals sign</p>
* The key may not have any whitespace nor an equals sign.
*
* @param key the key
* @param value the value
@@ -153,7 +153,7 @@ void Preferences::PutInt(llvm::StringRef key, int value) {
/**
* Puts the given double into the preferences table.
*
* <p>The key may not have any whitespace nor an equals sign</p>
* The key may not have any whitespace nor an equals sign.
*
* @param key the key
* @param value the value
@@ -167,7 +167,7 @@ void Preferences::PutDouble(llvm::StringRef key, double value) {
/**
* Puts the given float into the preferences table.
*
* <p>The key may not have any whitespace nor an equals sign</p>
* The key may not have any whitespace nor an equals sign.
*
* @param key the key
* @param value the value
@@ -181,7 +181,7 @@ void Preferences::PutFloat(llvm::StringRef key, float value) {
/**
* Puts the given boolean into the preferences table.
*
* <p>The key may not have any whitespace nor an equals sign</p>
* The key may not have any whitespace nor an equals sign.
*
* @param key the key
* @param value the value
@@ -195,7 +195,7 @@ void Preferences::PutBoolean(llvm::StringRef key, bool value) {
/**
* Puts the given long (int64_t) into the preferences table.
*
* <p>The key may not have any whitespace nor an equals sign</p>
* The key may not have any whitespace nor an equals sign.
*
* @param key the key
* @param value the value