Skip to content

Commit c2debf3

Browse files
committed
Fix javadoc
1 parent ca3a4a3 commit c2debf3

File tree

2 files changed

+7
-12
lines changed

2 files changed

+7
-12
lines changed

guice/src/main/java/io/cucumber/guice/impl/SequentialScenarioScope.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,17 @@ public class SequentialScenarioScope implements ScenarioScope {
1414
* Scopes a provider. The returned provider returns objects from this scope.
1515
* If an object does not exist in this scope, the provider can use the given
1616
* unscoped provider to retrieve one.
17-
* <p/>
18-
* <p>Scope implementations are strongly encouraged to override
17+
* <p>
18+
* Scope implementations are strongly encouraged to override
1919
* {@link Object#toString} in the returned provider and include the backing
2020
* provider's {@code toString()} output.
2121
*
2222
* @param key binding key
2323
* @param unscoped locates an instance when one doesn't already exist in this
2424
* scope.
2525
* @return a new provider which only delegates to the given unscoped provider
26-
* when an instance of the requested object doesn't already exist in this
27-
* scope
26+
* when an instance of the requested object doesn't already exist in this
27+
* scope
2828
*/
2929
@Override
3030
public <T> Provider<T> scope(final Key<T> key, final Provider<T> unscoped) {

pom.xml

+3-8
Original file line numberDiff line numberDiff line change
@@ -683,8 +683,7 @@
683683
<version>3.0.0-M1</version>
684684
<configuration>
685685
<use>false</use>
686-
<excludePackageNames>cucumber.runtime,cucumber.runtime.*,org.springframework
687-
</excludePackageNames>
686+
<excludePackageNames>io.cucumber.*,org.springframework</excludePackageNames>
688687
<links>
689688
<link>http://docs.oracle.com/javase/7/docs/api/</link>
690689
<link>http://junit.sourceforge.net/javadoc/</link>
@@ -810,17 +809,13 @@
810809
<classes>
811810
<regex>true</regex>
812811
<exclude>
813-
<item>cucumber\.runner\..*</item>
814-
<item>cucumber\.runtime\..*</item>
815-
<item>cucumber\.util\..*</item>
812+
<item>io\.cucumber..*</item>
816813
</exclude>
817814
</classes>
818815
<packages>
819816
<regex>true</regex>
820817
<exclude>
821-
<item>cucumber\.runner\..*</item>
822-
<item>cucumber\.runtime\..*</item>
823-
<item>cucumber\.util\..*</item>
818+
<item>io\.cucumber\..*</item>
824819
<!--The logging dependencies for Spring are provided. This causes them to
825820
be missing in the dependency hierarchy. A false positive. -->
826821
<item>org\.springframework\.core\..*</item>

0 commit comments

Comments
 (0)