Skip to content
This repository was archived by the owner on Feb 3, 2021. It is now read-only.

Commit 5ce7983

Browse files
authored
Merge pull request #215 from mockito/simplify-impl
Simplify implementation to trigger shipping Javadoc
2 parents 1d32785 + 649faf7 commit 5ce7983

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ allprojects {
1919

2020
// enable Shipkit Java plugin. All Shipkit configuration will be stored in gradle/shipkit.gradle file
2121
apply plugin: "org.shipkit.java"
22-
// enable Shipkit Javadoc plugin. Now Javadoc can be shipped to the Git repository
22+
// enable Shipkit Javadoc plugin. Now Javadoc can be shipped to the GitHub repository
2323
apply plugin: "org.shipkit.javadoc"
2424

2525
apply from: "gradle/ide.gradle"

subprojects/impl/src/main/java/Library.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ public class Library implements SomeApi {
1010
* @return true
1111
*/
1212
public boolean someLibraryMethod() {
13-
return 1 == 1;
13+
return true;
1414
}
1515
}

0 commit comments

Comments
 (0)