Jeroen De Dauw has uploaded a new change for review. https://gerrit.wikimedia.org/r/86424
Change subject: Remove clutter comments ...................................................................... Remove clutter comments Change-Id: I84ea6e8399a51c063c52d72399e29c9be944bc44 --- M Diff.classes.php M Diff.credits.php M Diff.i18n.php M Diff.mw.php M src/Appendable.php M src/ArrayComparer/ArrayComparer.php M src/ArrayComparer/NativeArrayComparer.php M src/ArrayComparer/StrategicArrayComparer.php M src/ArrayComparer/StrictArrayComparer.php M src/Comparer/CallbackComparer.php M src/Comparer/StrictComparer.php M src/Comparer/ValueComparer.php M src/DiffOpFactory.php M src/differ/CallbackListDiffer.php M src/differ/Differ.php M src/differ/ListDiffer.php M src/differ/MapDiffer.php M src/diffop/AtomicDiffOp.php M src/diffop/DiffOp.php M src/diffop/DiffOpAdd.php M src/diffop/DiffOpChange.php M src/diffop/DiffOpRemove.php M src/diffop/diff/Diff.php M src/diffop/diff/IDiff.php M src/diffop/diff/ListDiff.php M src/diffop/diff/MapDiff.php M src/patcher/ListPatcher.php M src/patcher/MapPatcher.php M src/patcher/Patcher.php M src/patcher/PreviewablePatcher.php M src/patcher/ThrowingPatcher.php M tests/bootstrap.php M tests/phpunit/ArrayComparer/NativeArrayComparerTest.php M tests/phpunit/ArrayComparer/StrategicArrayComparerTest.php M tests/phpunit/ArrayComparer/StrictArrayComparerTest.php M tests/phpunit/Comparer/CallbackComparerTest.php M tests/phpunit/Comparer/StrictComparerTest.php M tests/phpunit/DiffOpFactoryTest.php M tests/phpunit/DiffTestCase.php M tests/phpunit/differ/CallbackListDifferTest.php M tests/phpunit/differ/ListDifferTest.php M tests/phpunit/differ/MapDifferTest.php M tests/phpunit/diffop/DiffOpAddTest.php M tests/phpunit/diffop/DiffOpChangeTest.php M tests/phpunit/diffop/DiffOpRemoveTest.php M tests/phpunit/diffop/DiffOpTest.php M tests/phpunit/diffop/diff/DiffAsOpTest.php M tests/phpunit/diffop/diff/DiffTest.php M tests/phpunit/diffop/diff/ListDiffTest.php M tests/phpunit/diffop/diff/MapDiffTest.php M tests/phpunit/patcher/ListPatcherTest.php M tests/phpunit/patcher/MapPatcherTest.php M tests/phpunit/patcher/ThrowingPatcherTest.php 53 files changed, 0 insertions(+), 201 deletions(-) git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/Diff refs/changes/24/86424/1 diff --git a/Diff.classes.php b/Diff.classes.php index 7e1775f..3da462a 100644 --- a/Diff.classes.php +++ b/Diff.classes.php @@ -5,9 +5,6 @@ * * @since 0.1 * - * @file - * @ingroup Diff - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/Diff.credits.php b/Diff.credits.php index f74a537..a10f2b1 100644 --- a/Diff.credits.php +++ b/Diff.credits.php @@ -5,9 +5,6 @@ * * @since 0.1 * - * @file - * @ingroup Diff - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/Diff.i18n.php b/Diff.i18n.php index 2942a7f..ef4eaf4 100644 --- a/Diff.i18n.php +++ b/Diff.i18n.php @@ -4,9 +4,6 @@ * * @since 0.1 * - * @file - * @ingroup Diff - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/Diff.mw.php b/Diff.mw.php index a4dff18..bac9cb5 100644 --- a/Diff.mw.php +++ b/Diff.mw.php @@ -6,9 +6,6 @@ * * @since 0.3 * - * @file - * @ingroup Diff - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/src/Appendable.php b/src/Appendable.php index b9a32d5..27c95bb 100644 --- a/src/Appendable.php +++ b/src/Appendable.php @@ -7,9 +7,6 @@ * * @since 0.1 * - * @file - * @ingroup Diff - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/src/ArrayComparer/ArrayComparer.php b/src/ArrayComparer/ArrayComparer.php index 99c6ab9..e64dc42 100644 --- a/src/ArrayComparer/ArrayComparer.php +++ b/src/ArrayComparer/ArrayComparer.php @@ -8,9 +8,6 @@ * * @since 0.8 * - * @file - * @ingroup Diff - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/src/ArrayComparer/NativeArrayComparer.php b/src/ArrayComparer/NativeArrayComparer.php index c5ef04f..2b0fce8 100644 --- a/src/ArrayComparer/NativeArrayComparer.php +++ b/src/ArrayComparer/NativeArrayComparer.php @@ -7,9 +7,6 @@ * * @since 0.8 * - * @file - * @ingroup Diff - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/src/ArrayComparer/StrategicArrayComparer.php b/src/ArrayComparer/StrategicArrayComparer.php index 555925a..524f421 100644 --- a/src/ArrayComparer/StrategicArrayComparer.php +++ b/src/ArrayComparer/StrategicArrayComparer.php @@ -13,9 +13,6 @@ * * @since 0.8 * - * @file - * @ingroup Diff - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/src/ArrayComparer/StrictArrayComparer.php b/src/ArrayComparer/StrictArrayComparer.php index 6d3e2c3..8f8d40d 100644 --- a/src/ArrayComparer/StrictArrayComparer.php +++ b/src/ArrayComparer/StrictArrayComparer.php @@ -15,9 +15,6 @@ * * @since 0.8 * - * @file - * @ingroup Diff - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/src/Comparer/CallbackComparer.php b/src/Comparer/CallbackComparer.php index dd16549..cd35425 100644 --- a/src/Comparer/CallbackComparer.php +++ b/src/Comparer/CallbackComparer.php @@ -8,9 +8,6 @@ * * @since 0.6 * - * @file - * @ingroup Diff - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/src/Comparer/StrictComparer.php b/src/Comparer/StrictComparer.php index db5a50d..ce46224 100644 --- a/src/Comparer/StrictComparer.php +++ b/src/Comparer/StrictComparer.php @@ -7,9 +7,6 @@ * * @since 0.6 * - * @file - * @ingroup Diff - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/src/Comparer/ValueComparer.php b/src/Comparer/ValueComparer.php index e38053e..626e419 100644 --- a/src/Comparer/ValueComparer.php +++ b/src/Comparer/ValueComparer.php @@ -7,9 +7,6 @@ * * @since 0.6 * - * @file - * @ingroup Diff - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/src/DiffOpFactory.php b/src/DiffOpFactory.php index 8fc495a..972c74f 100644 --- a/src/DiffOpFactory.php +++ b/src/DiffOpFactory.php @@ -9,9 +9,6 @@ * * @since 0.5 * - * @file - * @ingroup Diff - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > * @author Daniel Kinzler diff --git a/src/differ/CallbackListDiffer.php b/src/differ/CallbackListDiffer.php index ce8c21f..4d48d8f 100644 --- a/src/differ/CallbackListDiffer.php +++ b/src/differ/CallbackListDiffer.php @@ -13,9 +13,6 @@ * * @since 0.5 * - * @file - * @ingroup Diff - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/src/differ/Differ.php b/src/differ/Differ.php index a15ccc1..260873f 100644 --- a/src/differ/Differ.php +++ b/src/differ/Differ.php @@ -7,9 +7,6 @@ * * @since 0.4 * - * @file - * @ingroup Diff - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/src/differ/ListDiffer.php b/src/differ/ListDiffer.php index 108795c..5b0392f 100644 --- a/src/differ/ListDiffer.php +++ b/src/differ/ListDiffer.php @@ -15,9 +15,6 @@ * * @since 0.4 * - * @file - * @ingroup Diff - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/src/differ/MapDiffer.php b/src/differ/MapDiffer.php index 5e8ece4..d3c93dd 100644 --- a/src/differ/MapDiffer.php +++ b/src/differ/MapDiffer.php @@ -11,9 +11,6 @@ * * @since 0.4 * - * @file - * @ingroup Diff - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/src/diffop/AtomicDiffOp.php b/src/diffop/AtomicDiffOp.php index 2ae5e79..79af069 100644 --- a/src/diffop/AtomicDiffOp.php +++ b/src/diffop/AtomicDiffOp.php @@ -8,9 +8,6 @@ * * @since 0.1 * - * @file - * @ingroup Diff - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > * @author Daniel Kinzler diff --git a/src/diffop/DiffOp.php b/src/diffop/DiffOp.php index f0535a6..df0831b 100644 --- a/src/diffop/DiffOp.php +++ b/src/diffop/DiffOp.php @@ -12,9 +12,6 @@ * * @since 0.1 * - * @file - * @ingroup Diff - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/src/diffop/DiffOpAdd.php b/src/diffop/DiffOpAdd.php index 2f649f0..d958f98 100644 --- a/src/diffop/DiffOpAdd.php +++ b/src/diffop/DiffOpAdd.php @@ -8,9 +8,6 @@ * * @since 0.1 * - * @file - * @ingroup Diff - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/src/diffop/DiffOpChange.php b/src/diffop/DiffOpChange.php index dfd26f2..2bab5d7 100644 --- a/src/diffop/DiffOpChange.php +++ b/src/diffop/DiffOpChange.php @@ -8,9 +8,6 @@ * * @since 0.1 * - * @file - * @ingroup Diff - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/src/diffop/DiffOpRemove.php b/src/diffop/DiffOpRemove.php index a092381..8e178b9 100644 --- a/src/diffop/DiffOpRemove.php +++ b/src/diffop/DiffOpRemove.php @@ -8,9 +8,6 @@ * * @since 0.1 * - * @file - * @ingroup Diff - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/src/diffop/diff/Diff.php b/src/diffop/diff/Diff.php index 237f2a1..675f474 100644 --- a/src/diffop/diff/Diff.php +++ b/src/diffop/diff/Diff.php @@ -10,9 +10,6 @@ * * @since 0.1 * - * @file - * @ingroup Diff - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > * @author Daniel Kinzler diff --git a/src/diffop/diff/IDiff.php b/src/diffop/diff/IDiff.php index 4de410b..6b5f6a2 100644 --- a/src/diffop/diff/IDiff.php +++ b/src/diffop/diff/IDiff.php @@ -10,9 +10,6 @@ * @since 0.1 * @deprecated since 0.5 * - * @file - * @ingroup Diff - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/src/diffop/diff/ListDiff.php b/src/diffop/diff/ListDiff.php index 8599cf9..11f8a02 100644 --- a/src/diffop/diff/ListDiff.php +++ b/src/diffop/diff/ListDiff.php @@ -12,9 +12,6 @@ * @since 0.1 * @deprecated since 0.5 * - * @file - * @ingroup Diff - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/src/diffop/diff/MapDiff.php b/src/diffop/diff/MapDiff.php index 5098e13..6b2c963 100644 --- a/src/diffop/diff/MapDiff.php +++ b/src/diffop/diff/MapDiff.php @@ -13,9 +13,6 @@ * @since 0.1 * @deprecated since 0.5 * - * @file - * @ingroup Diff - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/src/patcher/ListPatcher.php b/src/patcher/ListPatcher.php index a879c28..0d41794 100644 --- a/src/patcher/ListPatcher.php +++ b/src/patcher/ListPatcher.php @@ -5,9 +5,6 @@ /** * @since 0.4 * - * @file - * @ingroup Diff - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/src/patcher/MapPatcher.php b/src/patcher/MapPatcher.php index 5354728..1732f15 100644 --- a/src/patcher/MapPatcher.php +++ b/src/patcher/MapPatcher.php @@ -10,9 +10,6 @@ * * @since 0.4 * - * @file - * @ingroup Diff - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/src/patcher/Patcher.php b/src/patcher/Patcher.php index 5a3b6e7..968873a 100644 --- a/src/patcher/Patcher.php +++ b/src/patcher/Patcher.php @@ -7,9 +7,6 @@ * * @since 0.4 * - * @file - * @ingroup Diff - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/src/patcher/PreviewablePatcher.php b/src/patcher/PreviewablePatcher.php index 9de418b..ff52932 100644 --- a/src/patcher/PreviewablePatcher.php +++ b/src/patcher/PreviewablePatcher.php @@ -10,9 +10,6 @@ * * @since 0.4 * - * @file - * @ingroup Diff - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/src/patcher/ThrowingPatcher.php b/src/patcher/ThrowingPatcher.php index 1ec3cc9..163c75e 100644 --- a/src/patcher/ThrowingPatcher.php +++ b/src/patcher/ThrowingPatcher.php @@ -9,9 +9,6 @@ * * @since 0.4 * - * @file - * @ingroup Diff - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/tests/bootstrap.php b/tests/bootstrap.php index 5788a07..818fa36 100644 --- a/tests/bootstrap.php +++ b/tests/bootstrap.php @@ -5,9 +5,6 @@ * * @since 0.6 * - * @file - * @ingroup Diff - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/tests/phpunit/ArrayComparer/NativeArrayComparerTest.php b/tests/phpunit/ArrayComparer/NativeArrayComparerTest.php index cdbd68e..f1c2d56 100644 --- a/tests/phpunit/ArrayComparer/NativeArrayComparerTest.php +++ b/tests/phpunit/ArrayComparer/NativeArrayComparerTest.php @@ -8,11 +8,6 @@ /** * @covers Diff\ArrayComparer\NativeArrayComparer * - * @file - * @since 0.8 - * - * @ingroup DiffTest - * * @group Diff * * @licence GNU GPL v2+ diff --git a/tests/phpunit/ArrayComparer/StrategicArrayComparerTest.php b/tests/phpunit/ArrayComparer/StrategicArrayComparerTest.php index 80e5cd4..1ee0801 100644 --- a/tests/phpunit/ArrayComparer/StrategicArrayComparerTest.php +++ b/tests/phpunit/ArrayComparer/StrategicArrayComparerTest.php @@ -9,11 +9,6 @@ /** * @covers Diff\ArrayComparer\StrategicArrayComparer * - * @file - * @since 0.8 - * - * @ingroup DiffTest - * * @group Diff * * @licence GNU GPL v2+ diff --git a/tests/phpunit/ArrayComparer/StrictArrayComparerTest.php b/tests/phpunit/ArrayComparer/StrictArrayComparerTest.php index 35cd54b..b5ba327 100644 --- a/tests/phpunit/ArrayComparer/StrictArrayComparerTest.php +++ b/tests/phpunit/ArrayComparer/StrictArrayComparerTest.php @@ -8,11 +8,6 @@ /** * @covers Diff\ArrayComparer\StrictArrayComparer * - * @file - * @since 0.8 - * - * @ingroup DiffTest - * * @group Diff * * @licence GNU GPL v2+ diff --git a/tests/phpunit/Comparer/CallbackComparerTest.php b/tests/phpunit/Comparer/CallbackComparerTest.php index ee06097..a646157 100644 --- a/tests/phpunit/Comparer/CallbackComparerTest.php +++ b/tests/phpunit/Comparer/CallbackComparerTest.php @@ -8,11 +8,6 @@ /** * @covers Diff\Comparer\CallbackComparer * - * @file - * @since 0.6 - * - * @ingroup DiffTest - * * @group Diff * @group Comparer * diff --git a/tests/phpunit/Comparer/StrictComparerTest.php b/tests/phpunit/Comparer/StrictComparerTest.php index ebcc854..8047e38 100644 --- a/tests/phpunit/Comparer/StrictComparerTest.php +++ b/tests/phpunit/Comparer/StrictComparerTest.php @@ -8,11 +8,6 @@ /** * @covers Diff\Comparer\StrictComparer * - * @file - * @since 0.6 - * - * @ingroup DiffTest - * * @group Diff * @group Comparer * diff --git a/tests/phpunit/DiffOpFactoryTest.php b/tests/phpunit/DiffOpFactoryTest.php index 4a6f871..13c1950 100644 --- a/tests/phpunit/DiffOpFactoryTest.php +++ b/tests/phpunit/DiffOpFactoryTest.php @@ -12,11 +12,6 @@ /** * @covers Diff\DiffOpFactory * - * @file - * @since 0.5 - * - * @ingroup DiffTest - * * @group Diff * @group DiffOpFactory * diff --git a/tests/phpunit/DiffTestCase.php b/tests/phpunit/DiffTestCase.php index 1a7264c..80e6a9d 100644 --- a/tests/phpunit/DiffTestCase.php +++ b/tests/phpunit/DiffTestCase.php @@ -5,11 +5,6 @@ /** * Base class for unit tests in the Diff library. * - * @since 0.6 - * - * @file - * @ingroup DiffTests - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/tests/phpunit/differ/CallbackListDifferTest.php b/tests/phpunit/differ/CallbackListDifferTest.php index d8f8bdc..072859b 100644 --- a/tests/phpunit/differ/CallbackListDifferTest.php +++ b/tests/phpunit/differ/CallbackListDifferTest.php @@ -10,11 +10,6 @@ /** * @covers Diff\CallbackListDiffer * - * @file - * @since 0.5 - * - * @ingroup DiffTest - * * @group Diff * @group Differ * diff --git a/tests/phpunit/differ/ListDifferTest.php b/tests/phpunit/differ/ListDifferTest.php index 703e144..e2738e5 100644 --- a/tests/phpunit/differ/ListDifferTest.php +++ b/tests/phpunit/differ/ListDifferTest.php @@ -10,11 +10,6 @@ /** * @covers Diff\ListDiffer * - * @file - * @since 0.4 - * - * @ingroup DiffTest - * * @group Diff * @group Differ * diff --git a/tests/phpunit/differ/MapDifferTest.php b/tests/phpunit/differ/MapDifferTest.php index 0a93e87..d1f7c0f 100644 --- a/tests/phpunit/differ/MapDifferTest.php +++ b/tests/phpunit/differ/MapDifferTest.php @@ -11,11 +11,6 @@ /** * @covers Diff\MapDiffer * - * @file - * @since 0.4 - * - * @ingroup DiffTest - * * @group Diff * @group Differ * diff --git a/tests/phpunit/diffop/DiffOpAddTest.php b/tests/phpunit/diffop/DiffOpAddTest.php index 4ac1921..be6311d 100644 --- a/tests/phpunit/diffop/DiffOpAddTest.php +++ b/tests/phpunit/diffop/DiffOpAddTest.php @@ -8,11 +8,6 @@ * @covers Diff\DiffOpAdd * @covers Diff\AtomicDiffOp * - * @file - * @since 0.1 - * - * @ingroup DiffTest - * * @group Diff * @group DiffOp * diff --git a/tests/phpunit/diffop/DiffOpChangeTest.php b/tests/phpunit/diffop/DiffOpChangeTest.php index cc8129f..8a8a7ca 100644 --- a/tests/phpunit/diffop/DiffOpChangeTest.php +++ b/tests/phpunit/diffop/DiffOpChangeTest.php @@ -9,11 +9,6 @@ * @covers Diff\DiffOpChange * @covers Diff\AtomicDiffOp * - * @file - * @since 0.1 - * - * @ingroup DiffTest - * * @group Diff * @group DiffOp * diff --git a/tests/phpunit/diffop/DiffOpRemoveTest.php b/tests/phpunit/diffop/DiffOpRemoveTest.php index 51be633..c2999cd 100644 --- a/tests/phpunit/diffop/DiffOpRemoveTest.php +++ b/tests/phpunit/diffop/DiffOpRemoveTest.php @@ -9,11 +9,6 @@ * @covers Diff\DiffOpRemove * @covers Diff\AtomicDiffOp * - * @file - * @since 0.1 - * - * @ingroup DiffTest - * * @group Diff * @group DiffOp * diff --git a/tests/phpunit/diffop/DiffOpTest.php b/tests/phpunit/diffop/DiffOpTest.php index 9874f06..8317f35 100644 --- a/tests/phpunit/diffop/DiffOpTest.php +++ b/tests/phpunit/diffop/DiffOpTest.php @@ -7,11 +7,6 @@ /** * Base test class for the Diff\DiffOp deriving classes. * - * @file - * @since 0.1 - * - * @ingroup DiffTest - * * @group Diff * @group DiffOp * diff --git a/tests/phpunit/diffop/diff/DiffAsOpTest.php b/tests/phpunit/diffop/diff/DiffAsOpTest.php index f06c6a4..57ef9f5 100644 --- a/tests/phpunit/diffop/diff/DiffAsOpTest.php +++ b/tests/phpunit/diffop/diff/DiffAsOpTest.php @@ -9,11 +9,6 @@ /** * @covers Diff\Diff * - * @file - * @since 0.5 - * - * @ingroup DiffTest - * * @group Diff * @group DiffOp * diff --git a/tests/phpunit/diffop/diff/DiffTest.php b/tests/phpunit/diffop/diff/DiffTest.php index 938392d..8f5b284 100644 --- a/tests/phpunit/diffop/diff/DiffTest.php +++ b/tests/phpunit/diffop/diff/DiffTest.php @@ -12,11 +12,6 @@ /** * @covers Diff\Diff * - * @file - * @since 0.1 - * - * @ingroup DiffTest - * * @group Diff * @group DiffOp * diff --git a/tests/phpunit/diffop/diff/ListDiffTest.php b/tests/phpunit/diffop/diff/ListDiffTest.php index 19dda21..57c5557 100644 --- a/tests/phpunit/diffop/diff/ListDiffTest.php +++ b/tests/phpunit/diffop/diff/ListDiffTest.php @@ -10,11 +10,6 @@ /** * @covers Diff\ListDiff * - * @file - * @since 0.1 - * - * @ingroup DiffTest - * * @group Diff * @group DiffOp * diff --git a/tests/phpunit/diffop/diff/MapDiffTest.php b/tests/phpunit/diffop/diff/MapDiffTest.php index e3f26ba..d2d7e2a 100644 --- a/tests/phpunit/diffop/diff/MapDiffTest.php +++ b/tests/phpunit/diffop/diff/MapDiffTest.php @@ -14,11 +14,6 @@ /** * @covers Diff\MapDiff * - * @file - * @since 0.1 - * - * @ingroup DiffTest - * * @group Diff * @group DiffOp * diff --git a/tests/phpunit/patcher/ListPatcherTest.php b/tests/phpunit/patcher/ListPatcherTest.php index b45643e..119b246 100644 --- a/tests/phpunit/patcher/ListPatcherTest.php +++ b/tests/phpunit/patcher/ListPatcherTest.php @@ -12,11 +12,6 @@ * @covers Diff\ListPatcher * @covers Diff\ThrowingPatcher * - * @file - * @since 0.4 - * - * @ingroup DiffTest - * * @group Diff * @group DiffPatcher * diff --git a/tests/phpunit/patcher/MapPatcherTest.php b/tests/phpunit/patcher/MapPatcherTest.php index f564036..bd7e0a3 100644 --- a/tests/phpunit/patcher/MapPatcherTest.php +++ b/tests/phpunit/patcher/MapPatcherTest.php @@ -14,11 +14,6 @@ * @covers Diff\MapPatcher * @covers Diff\ThrowingPatcher * - * @file - * @since 0.4 - * - * @ingroup DiffTest - * * @group Diff * @group DiffPatcher * @group MapPatcherTest diff --git a/tests/phpunit/patcher/ThrowingPatcherTest.php b/tests/phpunit/patcher/ThrowingPatcherTest.php index d9f9572..f58fa25 100644 --- a/tests/phpunit/patcher/ThrowingPatcherTest.php +++ b/tests/phpunit/patcher/ThrowingPatcherTest.php @@ -8,11 +8,6 @@ /** * @covers Diff\ThrowingPatcher * - * @file - * @since 0.7 - * - * @ingroup DiffTest - * * @group Diff * @group DiffPatcher * -- To view, visit https://gerrit.wikimedia.org/r/86424 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I84ea6e8399a51c063c52d72399e29c9be944bc44 Gerrit-PatchSet: 1 Gerrit-Project: mediawiki/extensions/Diff Gerrit-Branch: master Gerrit-Owner: Jeroen De Dauw <[email protected]> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
