Skip to content

Commit 6784eef

Browse files
committed
QA: Remove xp protocol from @see references
1 parent c6f22d9 commit 6784eef

12 files changed

+17
-17
lines changed

src/main/php/util/data/Aggregations.class.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
/**
66
* Aggregations factory
77
*
8-
* @see xp://util.data.ICollector
9-
* @test xp://util.data.unittest.AggregationsTest
8+
* @see util.data.ICollector
9+
* @test util.data.unittest.AggregationsTest
1010
*/
1111
final class Aggregations {
1212

src/main/php/util/data/CannotReset.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/**
66
* Indicates the underlying value is streamed and cannot be reset
77
*
8-
* @see xp://util.data.Iterator#rewind
8+
* @see util.data.Iterator#rewind
99
*/
1010
class CannotReset extends XPException {
1111

src/main/php/util/data/Collector.class.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
/**
44
* Collector
55
*
6-
* @see xp://util.data.Sequence#collect
7-
* @test xp://util.data.unittest.CollectorsTest
6+
* @see util.data.Sequence#collect
7+
* @test util.data.unittest.CollectorsTest
88
*/
99
class Collector implements ICollector {
1010
protected $supplier;

src/main/php/util/data/Collectors.class.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
/**
77
* Collector factory
88
*
9-
* @see xp://util.data.ICollector
10-
* @test xp://util.data.unittest.CollectorsTest
9+
* @see util.data.ICollector
10+
* @test util.data.unittest.CollectorsTest
1111
*/
1212
final class Collectors {
1313

src/main/php/util/data/ContinuationOf.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Continuation of a given iteration, that is, rewind() is not called on the
55
* underlying iterator.
66
*
7-
* @test xp://util.data.unittest.ContinuationOfTest
7+
* @test util.data.unittest.ContinuationOfTest
88
*/
99
class ContinuationOf extends Iterator {
1010

src/main/php/util/data/Enumeration.class.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
* @see php://class.traversable
1616
* @see php://language.oop5.iterations
1717
* @see php://generators
18-
* @see xp://util.XPIterator
19-
* @test xp://util.data.unittest.EnumerationTest
18+
* @see util.XPIterator
19+
* @test util.data.unittest.EnumerationTest
2020
*/
2121
abstract class Enumeration {
2222

src/main/php/util/data/Optional.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
/**
88
* An optional
99
*
10-
* @test xp://util.data.unittest.OptionalTest
10+
* @test util.data.unittest.OptionalTest
1111
*/
1212
class Optional implements Value, IteratorAggregate {
1313
public static $EMPTY;

src/main/php/util/data/Sequence.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public function getIterator(): Traversable { yield from $this->elements; }
4444
/**
4545
* Creates a new stream with an enumeration of elements
4646
*
47-
* @see xp://util.data.Enumeration
47+
* @see util.data.Enumeration
4848
* @param ?iterable|util.XPIterator|function(): iterable... $enumerables
4949
* @return self
5050
* @throws lang.IllegalArgumentException if type of elements argument is incorrect

src/main/php/util/data/SequenceIterator.class.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
/**
77
* Iterates over Sequence instances
88
*
9-
* @see xp://util.data.Sequence#iterator
10-
* @test xp://util.data.unittest.SequenceIteratorTest
9+
* @see util.data.Sequence#iterator
10+
* @test util.data.unittest.SequenceIteratorTest
1111
*/
1212
class SequenceIterator implements XPIterator, IteratorAggregate {
1313
private $it;

src/main/php/util/data/TraversalOf.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* a util.data.CannotReset exceptions to make it distinguishable from other
66
* exceptions.
77
*
8-
* @test xp://util.data.unittest.TraversalOfTest
8+
* @test util.data.unittest.TraversalOfTest
99
*/
1010
class TraversalOf extends Iterator {
1111

0 commit comments

Comments
 (0)