1
0
forked from 0ad/0ad

Fix documentation of non system component.

Summary: -

Test Plan: -

Reviewers: Itms, leper

Reviewed By: leper
Subscribers: Vulcan, O1 C++ Simulation

Differential Revision: https://code.wildfiregames.com/D221
This was SVN commit r19337.
This commit is contained in:
fatherbushido 2017-03-24 07:09:28 +00:00
parent d7b32a5c25
commit 9cf84c6800
4 changed files with 5 additions and 5 deletions

View File

@ -1,7 +1,7 @@
function StatisticsTracker() {}
StatisticsTracker.prototype.Schema =
"<a:component type='system'/><empty/>";
"<empty/>";
StatisticsTracker.prototype.Init = function()
{

View File

@ -1,7 +1,7 @@
function TechnologyManager() {}
TechnologyManager.prototype.Schema =
"<a:component type='system'/><empty/>";
"<empty/>";
TechnologyManager.prototype.Serialize = function()
{

View File

@ -1,6 +1,6 @@
function Wonder() {}
Wonder.prototype.Schema = "<a:component type='system'/><empty/>";
Wonder.prototype.Schema = "<empty/>";
Wonder.prototype.Init = function()
{

View File

@ -1,4 +1,4 @@
/* Copyright (C) 2015 Wildfire Games.
/* Copyright (C) 2017 Wildfire Games.
* This file is part of 0 A.D.
*
* 0 A.D. is free software: you can redistribute it and/or modify
@ -51,7 +51,7 @@ public:
static std::string GetSchema()
{
return "<a:component type='system'/><empty/>";
return "<empty/>";
}
virtual void Init(const CParamNode& UNUSED(paramNode))