Cleaning up comments in JSON code to avoid visual studio complaints

git-svn-id: http://libopenmetaverse.googlecode.com/svn/libopenmetaverse/trunk@2363 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
John Hurliman
2008-11-19 00:32:05 +00:00
parent c4bcb8e2bc
commit 0c502322f9
8 changed files with 16 additions and 16 deletions

View File

@@ -1,5 +1,5 @@
#region Header
/**
/*
* IJsonWrapper.cs
* Interface that represents a type capable of handling all kinds of JSON
* data. This is mainly used when mapping objects through JsonMapper, and
@@ -7,7 +7,7 @@
*
* The authors disclaim copyright to this source code. For more details, see
* the COPYING file included with this distribution.
**/
*/
#endregion

View File

@@ -1,12 +1,12 @@
#region Header
/**
/*
* JsonData.cs
* Generic type to hold JSON data (objects, arrays, and so on). This is
* the default type returned by JsonMapper.ToObject().
*
* The authors disclaim copyright to this source code. For more details, see
* the COPYING file included with this distribution.
**/
*/
#endregion

View File

@@ -1,11 +1,11 @@
#region Header
/**
/*
* JsonException.cs
* Base class throwed by LitJSON when a parsing error occurs.
*
* The authors disclaim copyright to this source code. For more details, see
* the COPYING file included with this distribution.
**/
*/
#endregion

View File

@@ -1,11 +1,11 @@
#region Header
/**
/*
* JsonMapper.cs
* JSON to .Net object and object to JSON conversions.
*
* The authors disclaim copyright to this source code. For more details, see
* the COPYING file included with this distribution.
**/
*/
#endregion

View File

@@ -1,11 +1,11 @@
#region Header
/**
/*
* JsonReader.cs
* Stream-like access to JSON text.
*
* The authors disclaim copyright to this source code. For more details, see
* the COPYING file included with this distribution.
**/
*/
#endregion

View File

@@ -1,11 +1,11 @@
#region Header
/**
/*
* JsonWriter.cs
* Stream-like facility to output JSON text.
*
* The authors disclaim copyright to this source code. For more details, see
* the COPYING file included with this distribution.
**/
*/
#endregion

View File

@@ -1,11 +1,11 @@
#region Header
/**
/*
* Lexer.cs
* JSON lexer implementation based on a finite state machine.
*
* The authors disclaim copyright to this source code. For more details, see
* the COPYING file included with this distribution.
**/
*/
#endregion

View File

@@ -1,11 +1,11 @@
#region Header
/**
/*
* ParserToken.cs
* Internal representation of the tokens used by the lexer and the parser.
*
* The authors disclaim copyright to this source code. For more details, see
* the COPYING file included with this distribution.
**/
*/
#endregion