Jeroen De Dauw has submitted this change and it was merged.

Change subject: Remove clutter comments
......................................................................


Remove clutter comments

Change-Id: If42318a04d1831dbbbfa4738ad2a42325c92b5fa
---
M Ask.credits.php
M Ask.i18n.php
M Ask.mw.php
M Tests/bootstrap.php
M Tests/testLoader.php
M src/Ask/Comparable.php
M src/Ask/DeserializerFactory.php
M src/Ask/Deserializers/DescriptionDeserializer.php
M src/Ask/Deserializers/QueryDeserializer.php
M src/Ask/Deserializers/QueryOptionsDeserializer.php
M src/Ask/Deserializers/SelectionRequestDeserializer.php
M src/Ask/Deserializers/SortExpressionDeserializer.php
M src/Ask/Deserializers/Strategies/DescriptionDeserializationStrategy.php
M src/Ask/Deserializers/Strategies/SelectionRequestDeserializationStrategy.php
M src/Ask/Deserializers/Strategies/SortExpressionDeserializationStrategy.php
M src/Ask/Hashable.php
M src/Ask/Immutable.php
M src/Ask/Language/Description/AnyValue.php
M src/Ask/Language/Description/Conjunction.php
M src/Ask/Language/Description/Description.php
M src/Ask/Language/Description/DescriptionCollection.php
M src/Ask/Language/Description/Disjunction.php
M src/Ask/Language/Description/SomeProperty.php
M src/Ask/Language/Description/ValueDescription.php
M src/Ask/Language/Option/PropertyValueSortExpression.php
M src/Ask/Language/Option/QueryOptions.php
M src/Ask/Language/Option/SortExpression.php
M src/Ask/Language/Option/SortOptions.php
M src/Ask/Language/Query.php
M src/Ask/Language/Selection/PropertySelection.php
M src/Ask/Language/Selection/SelectionRequest.php
M src/Ask/Language/Selection/SubjectSelection.php
M src/Ask/SerializerFactory.php
M src/Ask/Serializers/DescriptionSerializer.php
M src/Ask/Serializers/QueryOptionsSerializer.php
M src/Ask/Serializers/QuerySerializer.php
M src/Ask/Serializers/SelectionRequestSerializer.php
M src/Ask/Serializers/SortExpressionSerializer.php
M src/Ask/Typeable.php
39 files changed, 0 insertions(+), 117 deletions(-)

Approvals:
  Jeroen De Dauw: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/Ask.credits.php b/Ask.credits.php
index bb3226d..ac48cbc 100644
--- a/Ask.credits.php
+++ b/Ask.credits.php
@@ -5,9 +5,6 @@
  *
  * @since 1.0
  *
- * @file
- * @ingroup Ask
- *
  * @licence GNU GPL v2+
  * @author Jeroen De Dauw < [email protected] >
  */
diff --git a/Ask.i18n.php b/Ask.i18n.php
index 2062fc0..6fc2a5a 100644
--- a/Ask.i18n.php
+++ b/Ask.i18n.php
@@ -5,9 +5,6 @@
  *
  * @since 1.0
  *
- * @file
- * @ingroup Ask
- *
  * @licence GNU GPL v2+
  * @author Jeroen De Dauw < [email protected] >
  */
diff --git a/Ask.mw.php b/Ask.mw.php
index 0ff0156..67cf9d1 100644
--- a/Ask.mw.php
+++ b/Ask.mw.php
@@ -6,9 +6,6 @@
  *
  * @since 1.0
  *
- * @file
- * @ingroup Ask
- *
  * @licence GNU GPL v2+
  * @author Jeroen De Dauw < [email protected] >
  */
diff --git a/Tests/bootstrap.php b/Tests/bootstrap.php
index 7994c25..e1c7532 100644
--- a/Tests/bootstrap.php
+++ b/Tests/bootstrap.php
@@ -5,9 +5,6 @@
  *
  * @since 1.0
  *
- * @file
- * @ingroup Ask
- *
  * @licence GNU GPL v2+
  * @author Jeroen De Dauw < [email protected] >
  */
diff --git a/Tests/testLoader.php b/Tests/testLoader.php
index 5bb7ad7..97d68c4 100644
--- a/Tests/testLoader.php
+++ b/Tests/testLoader.php
@@ -5,9 +5,6 @@
  *
  * @since 1.0
  *
- * @file
- * @ingroup Ask
- *
  * @licence GNU GPL v2+
  * @author Jeroen De Dauw < [email protected] >
  */
diff --git a/src/Ask/Comparable.php b/src/Ask/Comparable.php
index e7915a4..9b18ec6 100644
--- a/src/Ask/Comparable.php
+++ b/src/Ask/Comparable.php
@@ -7,9 +7,6 @@
  *
  * @since 1.0
  *
- * @file
- * @ingroup Ask
- *
  * @licence GNU GPL v2+
  * @author Jeroen De Dauw < [email protected] >
  */
diff --git a/src/Ask/DeserializerFactory.php b/src/Ask/DeserializerFactory.php
index 1ecefbf..7cfa9f4 100644
--- a/src/Ask/DeserializerFactory.php
+++ b/src/Ask/DeserializerFactory.php
@@ -17,9 +17,6 @@
  *
  * @since 1.0
  *
- * @file
- * @ingroup Ask
- *
  * @licence GNU GPL v2+
  * @author Adam Shorland < [email protected] >
  * @author Jeroen De Dauw < [email protected] >
diff --git a/src/Ask/Deserializers/DescriptionDeserializer.php 
b/src/Ask/Deserializers/DescriptionDeserializer.php
index 36b321e..8277ac8 100644
--- a/src/Ask/Deserializers/DescriptionDeserializer.php
+++ b/src/Ask/Deserializers/DescriptionDeserializer.php
@@ -15,9 +15,6 @@
  *
  * @since 1.0
  *
- * @file
- * @ingroup Ask
- *
  * @licence GNU GPL v2+
  * @author Jeroen De Dauw < [email protected] >
  */
diff --git a/src/Ask/Deserializers/QueryDeserializer.php 
b/src/Ask/Deserializers/QueryDeserializer.php
index ed9c39b..b4f9d60 100644
--- a/src/Ask/Deserializers/QueryDeserializer.php
+++ b/src/Ask/Deserializers/QueryDeserializer.php
@@ -9,9 +9,6 @@
 /**
  * @since 1.0
  *
- * @file
- * @ingroup Ask
- *
  * @licence GNU GPL v2+
  * @author Jeroen De Dauw < [email protected] >
  */
diff --git a/src/Ask/Deserializers/QueryOptionsDeserializer.php 
b/src/Ask/Deserializers/QueryOptionsDeserializer.php
index 9fed502..72e24cc 100644
--- a/src/Ask/Deserializers/QueryOptionsDeserializer.php
+++ b/src/Ask/Deserializers/QueryOptionsDeserializer.php
@@ -10,9 +10,6 @@
 /**
  * @since 1.0
  *
- * @file
- * @ingroup Ask
- *
  * @licence GNU GPL v2+
  * @author Jeroen De Dauw < [email protected] >
  */
diff --git a/src/Ask/Deserializers/SelectionRequestDeserializer.php 
b/src/Ask/Deserializers/SelectionRequestDeserializer.php
index 2362916..1f2272f 100644
--- a/src/Ask/Deserializers/SelectionRequestDeserializer.php
+++ b/src/Ask/Deserializers/SelectionRequestDeserializer.php
@@ -11,9 +11,6 @@
 /**
  * @since 1.0
  *
- * @file
- * @ingroup Ask
- *
  * @licence GNU GPL v2+
  * @author Jeroen De Dauw < [email protected] >
  */
diff --git a/src/Ask/Deserializers/SortExpressionDeserializer.php 
b/src/Ask/Deserializers/SortExpressionDeserializer.php
index 411f9b0..95fa1d9 100644
--- a/src/Ask/Deserializers/SortExpressionDeserializer.php
+++ b/src/Ask/Deserializers/SortExpressionDeserializer.php
@@ -11,9 +11,6 @@
 /**
  * @since 1.0
  *
- * @file
- * @ingroup Ask
- *
  * @licence GNU GPL v2+
  * @author Jeroen De Dauw < [email protected] >
  */
diff --git 
a/src/Ask/Deserializers/Strategies/DescriptionDeserializationStrategy.php 
b/src/Ask/Deserializers/Strategies/DescriptionDeserializationStrategy.php
index 404d94d..c495176 100644
--- a/src/Ask/Deserializers/Strategies/DescriptionDeserializationStrategy.php
+++ b/src/Ask/Deserializers/Strategies/DescriptionDeserializationStrategy.php
@@ -20,9 +20,6 @@
  *
  * @since 1.0
  *
- * @file
- * @ingroup Ask
- *
  * @licence GNU GPL v2+
  * @author Jeroen De Dauw < [email protected] >
  */
diff --git 
a/src/Ask/Deserializers/Strategies/SelectionRequestDeserializationStrategy.php 
b/src/Ask/Deserializers/Strategies/SelectionRequestDeserializationStrategy.php
index badc52f..c92d24d 100644
--- 
a/src/Ask/Deserializers/Strategies/SelectionRequestDeserializationStrategy.php
+++ 
b/src/Ask/Deserializers/Strategies/SelectionRequestDeserializationStrategy.php
@@ -14,9 +14,6 @@
 /**
  * @since 1.0
  *
- * @file
- * @ingroup Ask
- *
  * @licence GNU GPL v2+
  * @author Jeroen De Dauw < [email protected] >
  */
diff --git 
a/src/Ask/Deserializers/Strategies/SortExpressionDeserializationStrategy.php 
b/src/Ask/Deserializers/Strategies/SortExpressionDeserializationStrategy.php
index ec37660..b86223d 100644
--- a/src/Ask/Deserializers/Strategies/SortExpressionDeserializationStrategy.php
+++ b/src/Ask/Deserializers/Strategies/SortExpressionDeserializationStrategy.php
@@ -13,9 +13,6 @@
 /**
  * @since 1.0
  *
- * @file
- * @ingroup Ask
- *
  * @licence GNU GPL v2+
  * @author Jeroen De Dauw < [email protected] >
  */
diff --git a/src/Ask/Hashable.php b/src/Ask/Hashable.php
index 8d90966..96a7c61 100644
--- a/src/Ask/Hashable.php
+++ b/src/Ask/Hashable.php
@@ -7,9 +7,6 @@
  *
  * @since 1.0
  *
- * @file
- * @ingroup Ask
- *
  * @licence GNU GPL v2+
  * @author Jeroen De Dauw < [email protected] >
  */
diff --git a/src/Ask/Immutable.php b/src/Ask/Immutable.php
index dad4e9b..959218c 100644
--- a/src/Ask/Immutable.php
+++ b/src/Ask/Immutable.php
@@ -8,9 +8,6 @@
  *
  * @since 1.0
  *
- * @file
- * @ingroup Ask
- *
  * @licence GNU GPL v2+
  * @author Jeroen De Dauw < [email protected] >
  */
diff --git a/src/Ask/Language/Description/AnyValue.php 
b/src/Ask/Language/Description/AnyValue.php
index 55f05f5..a4901d8 100644
--- a/src/Ask/Language/Description/AnyValue.php
+++ b/src/Ask/Language/Description/AnyValue.php
@@ -11,9 +11,6 @@
  *
  * @since 1.0
  *
- * @file
- * @ingroup Ask
- *
  * @licence GNU GPL v2+
  * @author Jeroen De Dauw < [email protected] >
  */
diff --git a/src/Ask/Language/Description/Conjunction.php 
b/src/Ask/Language/Description/Conjunction.php
index 4783d04..de19374 100644
--- a/src/Ask/Language/Description/Conjunction.php
+++ b/src/Ask/Language/Description/Conjunction.php
@@ -12,9 +12,6 @@
  *
  * @since 1.0
  *
- * @file
- * @ingroup Ask
- *
  * @licence GNU GPL v2+
  * @author Jeroen De Dauw < [email protected] >
  */
diff --git a/src/Ask/Language/Description/Description.php 
b/src/Ask/Language/Description/Description.php
index c27c2fb..38dd8a3 100644
--- a/src/Ask/Language/Description/Description.php
+++ b/src/Ask/Language/Description/Description.php
@@ -9,9 +9,6 @@
  *
  * @since 1.0
  *
- * @file
- * @ingroup Ask
- *
  * @licence GNU GPL v2+
  * @author Jeroen De Dauw < [email protected] >
  */
diff --git a/src/Ask/Language/Description/DescriptionCollection.php 
b/src/Ask/Language/Description/DescriptionCollection.php
index df2adf1..1f50fbf 100644
--- a/src/Ask/Language/Description/DescriptionCollection.php
+++ b/src/Ask/Language/Description/DescriptionCollection.php
@@ -9,9 +9,6 @@
  *
  * @since 1.0
  *
- * @file
- * @ingroup Ask
- *
  * @licence GNU GPL v2+
  * @author Jeroen De Dauw < [email protected] >
  */
diff --git a/src/Ask/Language/Description/Disjunction.php 
b/src/Ask/Language/Description/Disjunction.php
index 2f58e1d..240f40d 100644
--- a/src/Ask/Language/Description/Disjunction.php
+++ b/src/Ask/Language/Description/Disjunction.php
@@ -12,9 +12,6 @@
  *
  * @since 1.0
  *
- * @file
- * @ingroup Ask
- *
  * @licence GNU GPL v2+
  * @author Jeroen De Dauw < [email protected] >
  */
diff --git a/src/Ask/Language/Description/SomeProperty.php 
b/src/Ask/Language/Description/SomeProperty.php
index a759221..2992300 100644
--- a/src/Ask/Language/Description/SomeProperty.php
+++ b/src/Ask/Language/Description/SomeProperty.php
@@ -17,9 +17,6 @@
  *
  * @since 1.0
  *
- * @file
- * @ingroup Ask
- *
  * @licence GNU GPL v2+
  * @author Jeroen De Dauw < [email protected] >
  */
diff --git a/src/Ask/Language/Description/ValueDescription.php 
b/src/Ask/Language/Description/ValueDescription.php
index e876223..5789542 100644
--- a/src/Ask/Language/Description/ValueDescription.php
+++ b/src/Ask/Language/Description/ValueDescription.php
@@ -19,9 +19,6 @@
  *
  * @since 1.0
  *
- * @file
- * @ingroup Ask
- *
  * @licence GNU GPL v2+
  * @author Jeroen De Dauw < [email protected] >
  */
diff --git a/src/Ask/Language/Option/PropertyValueSortExpression.php 
b/src/Ask/Language/Option/PropertyValueSortExpression.php
index c8c4a2f..a0bafe7 100644
--- a/src/Ask/Language/Option/PropertyValueSortExpression.php
+++ b/src/Ask/Language/Option/PropertyValueSortExpression.php
@@ -10,9 +10,6 @@
  *
  * @since 1.0
  *
- * @file
- * @ingroup Ask
- *
  * @licence GNU GPL v2+
  * @author Jeroen De Dauw < [email protected] >
  */
diff --git a/src/Ask/Language/Option/QueryOptions.php 
b/src/Ask/Language/Option/QueryOptions.php
index 90f9f75..d37ddb9 100644
--- a/src/Ask/Language/Option/QueryOptions.php
+++ b/src/Ask/Language/Option/QueryOptions.php
@@ -7,9 +7,6 @@
  *
  * @since 1.0
  *
- * @file
- * @ingroup Ask
- *
  * @licence GNU GPL v2+
  * @author Jeroen De Dauw < [email protected] >
  */
diff --git a/src/Ask/Language/Option/SortExpression.php 
b/src/Ask/Language/Option/SortExpression.php
index 285da3f..f21566e 100644
--- a/src/Ask/Language/Option/SortExpression.php
+++ b/src/Ask/Language/Option/SortExpression.php
@@ -9,9 +9,6 @@
  *
  * @since 1.0
  *
- * @file
- * @ingroup Ask
- *
  * @licence GNU GPL v2+
  * @author Jeroen De Dauw < [email protected] >
  */
diff --git a/src/Ask/Language/Option/SortOptions.php 
b/src/Ask/Language/Option/SortOptions.php
index 01f8a66..3410353 100644
--- a/src/Ask/Language/Option/SortOptions.php
+++ b/src/Ask/Language/Option/SortOptions.php
@@ -7,9 +7,6 @@
  *
  * @since 1.0
  *
- * @file
- * @ingroup Ask
- *
  * @licence GNU GPL v2+
  * @author Jeroen De Dauw < [email protected] >
  */
diff --git a/src/Ask/Language/Query.php b/src/Ask/Language/Query.php
index 4bb77e1..cbaadba 100644
--- a/src/Ask/Language/Query.php
+++ b/src/Ask/Language/Query.php
@@ -11,9 +11,6 @@
  *
  * @since 1.0
  *
- * @file
- * @ingroup Ask
- *
  * @licence GNU GPL v2+
  * @author Jeroen De Dauw < [email protected] >
  */
diff --git a/src/Ask/Language/Selection/PropertySelection.php 
b/src/Ask/Language/Selection/PropertySelection.php
index 6347036..8e3d818 100644
--- a/src/Ask/Language/Selection/PropertySelection.php
+++ b/src/Ask/Language/Selection/PropertySelection.php
@@ -9,9 +9,6 @@
  *
  * @since 1.0
  *
- * @file
- * @ingroup Ask
- *
  * @licence GNU GPL v2+
  * @author Jeroen De Dauw < [email protected] >
  */
diff --git a/src/Ask/Language/Selection/SelectionRequest.php 
b/src/Ask/Language/Selection/SelectionRequest.php
index 88f4a1b..165ff0d 100644
--- a/src/Ask/Language/Selection/SelectionRequest.php
+++ b/src/Ask/Language/Selection/SelectionRequest.php
@@ -10,9 +10,6 @@
  *
  * @since 1.0
  *
- * @file
- * @ingroup Ask
- *
  * @licence GNU GPL v2+
  * @author Jeroen De Dauw < [email protected] >
  */
diff --git a/src/Ask/Language/Selection/SubjectSelection.php 
b/src/Ask/Language/Selection/SubjectSelection.php
index cdda434..8d2c540 100644
--- a/src/Ask/Language/Selection/SubjectSelection.php
+++ b/src/Ask/Language/Selection/SubjectSelection.php
@@ -7,9 +7,6 @@
  *
  * @since 1.0
  *
- * @file
- * @ingroup Ask
- *
  * @licence GNU GPL v2+
  * @author Jeroen De Dauw < [email protected] >
  */
diff --git a/src/Ask/SerializerFactory.php b/src/Ask/SerializerFactory.php
index 2a88dd5..33e8419 100644
--- a/src/Ask/SerializerFactory.php
+++ b/src/Ask/SerializerFactory.php
@@ -16,9 +16,6 @@
  *
  * @since 1.0
  *
- * @file
- * @ingroup Ask
- *
  * @licence GNU GPL v2+
  * @author Jeroen De Dauw < [email protected] >
  * @author Adam Shorland < [email protected] >
diff --git a/src/Ask/Serializers/DescriptionSerializer.php 
b/src/Ask/Serializers/DescriptionSerializer.php
index ecb4feb..14a2e51 100644
--- a/src/Ask/Serializers/DescriptionSerializer.php
+++ b/src/Ask/Serializers/DescriptionSerializer.php
@@ -13,9 +13,6 @@
 /**
  * @since 1.0
  *
- * @file
- * @ingroup Ask
- *
  * @licence GNU GPL v2+
  * @author Jeroen De Dauw < [email protected] >
  */
diff --git a/src/Ask/Serializers/QueryOptionsSerializer.php 
b/src/Ask/Serializers/QueryOptionsSerializer.php
index 1cf1817..aed3641 100644
--- a/src/Ask/Serializers/QueryOptionsSerializer.php
+++ b/src/Ask/Serializers/QueryOptionsSerializer.php
@@ -10,9 +10,6 @@
 /**
  * @since 1.0
  *
- * @file
- * @ingroup Ask
- *
  * @licence GNU GPL v2+
  * @author Jeroen De Dauw < [email protected] >
  */
diff --git a/src/Ask/Serializers/QuerySerializer.php 
b/src/Ask/Serializers/QuerySerializer.php
index 3723d3f..11af204 100644
--- a/src/Ask/Serializers/QuerySerializer.php
+++ b/src/Ask/Serializers/QuerySerializer.php
@@ -9,9 +9,6 @@
 /**
  * @since 1.0
  *
- * @file
- * @ingroup Ask
- *
  * @licence GNU GPL v2+
  * @author Jeroen De Dauw < [email protected] >
  */
diff --git a/src/Ask/Serializers/SelectionRequestSerializer.php 
b/src/Ask/Serializers/SelectionRequestSerializer.php
index d66f10a..69a5a48 100644
--- a/src/Ask/Serializers/SelectionRequestSerializer.php
+++ b/src/Ask/Serializers/SelectionRequestSerializer.php
@@ -11,9 +11,6 @@
 /**
  * @since 1.0
  *
- * @file
- * @ingroup Ask
- *
  * @licence GNU GPL v2+
  * @author Jeroen De Dauw < [email protected] >
  */
diff --git a/src/Ask/Serializers/SortExpressionSerializer.php 
b/src/Ask/Serializers/SortExpressionSerializer.php
index 52a4ac9..bf5f2fe 100644
--- a/src/Ask/Serializers/SortExpressionSerializer.php
+++ b/src/Ask/Serializers/SortExpressionSerializer.php
@@ -10,9 +10,6 @@
 /**
  * @since 1.0
  *
- * @file
- * @ingroup Ask
- *
  * @licence GNU GPL v2+
  * @author Jeroen De Dauw < [email protected] >
  */
diff --git a/src/Ask/Typeable.php b/src/Ask/Typeable.php
index 26f2185..ecfc78f 100644
--- a/src/Ask/Typeable.php
+++ b/src/Ask/Typeable.php
@@ -7,9 +7,6 @@
  *
  * @since 1.0
  *
- * @file
- * @ingroup Ask
- *
  * @licence GNU GPL v2+
  * @author Jeroen De Dauw < [email protected] >
  */

-- 
To view, visit https://gerrit.wikimedia.org/r/86429
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: If42318a04d1831dbbbfa4738ad2a42325c92b5fa
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/Ask
Gerrit-Branch: master
Gerrit-Owner: Jeroen De Dauw <[email protected]>
Gerrit-Reviewer: Addshore <[email protected]>
Gerrit-Reviewer: Aude <[email protected]>
Gerrit-Reviewer: Jeroen De Dauw <[email protected]>
Gerrit-Reviewer: Tobias Gritschacher <[email protected]>
Gerrit-Reviewer: jenkins-bot

_______________________________________________
MediaWiki-commits mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to