Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lib/jsdoc-toolkit/app/test/jsdoc_test.js')
-rw-r--r--tests/lib/jsdoc-toolkit/app/test/jsdoc_test.js8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/lib/jsdoc-toolkit/app/test/jsdoc_test.js b/tests/lib/jsdoc-toolkit/app/test/jsdoc_test.js
index 120a186102..3318ea03ca 100644
--- a/tests/lib/jsdoc-toolkit/app/test/jsdoc_test.js
+++ b/tests/lib/jsdoc-toolkit/app/test/jsdoc_test.js
@@ -9,7 +9,6 @@
* @version 0.1
*/
-
/**
* Construct a new Shape object.
* @class This is the basic Shape class.
@@ -63,7 +62,6 @@ function Shape(){
function Hexagon(sideLength) {
}
-
/**
* This is an unattached (static) function that adds two integers together.
* @param {int} One The first number to add
@@ -75,7 +73,6 @@ function Add(One, Two){
return One + Two;
}
-
/**
* The color of this shape
* @type Color
@@ -168,7 +165,6 @@ function Rectangle(width, // This is the width
}
}
-
/* Inherit from Shape */
Rectangle.prototype = new Shape();
@@ -244,7 +240,6 @@ Rectangle.prototype.getArea = function(){
return width * height;
}
-
/**
* Create a new Square instance.
* @class A Square is a subclass of {@link Rectangle}
@@ -283,7 +278,6 @@ Square.prototype.setHeight = function(height){
this.height = this.width = height;
}
-
/**
* Create a new Circle instance based on a radius.
* @class Circle class is another subclass of Shape
@@ -343,7 +337,6 @@ Circle.createCircle = function(radius){
return new Circle(radius);
}
-
/**
* Create a new Coordinate instance based on x and y grid data.
* @class Coordinate is a class that can encapsulate location information.
@@ -447,7 +440,6 @@ MySingletonShapeFactory = function(){
}
-
/**
* Create a new Foo instance.
* @class This is the Foo class. It exists to demonstrate 'nested' classes.