Skip to content

Commit

Permalink
Fix Javadoc error
Browse files Browse the repository at this point in the history
  • Loading branch information
Shu Heng committed Dec 27, 2019
1 parent ee9511e commit ac26889
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion core/src/main/java/feast/core/config/MonitoringConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public FeastResourceCollector feastResourceCollector(
/**
* Register custom Prometheus collector that exports metrics about JVM resource usage.
*
* @return @{link {@link JVMResourceCollector}}
* @return {@link JVMResourceCollector}
*/
@Bean
public JVMResourceCollector jvmResourceCollector() {
Expand Down
2 changes: 1 addition & 1 deletion core/src/main/java/feast/core/service/SpecService.java
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ public GetFeatureSetResponse getFeatureSet(GetFeatureSetRequest request) {
* possible if a project name is not set explicitly
*
* <p>The version field can be one of - '*' - This will match all versions - 'latest' - This will
* match the latest feature set version - '<number>' - This will match a specific feature set
* match the latest feature set version - '&lt;number&gt;' - This will match a specific feature set
* version. This property can only be set if both the feature set name and project name are
* explicitly set.
*
Expand Down
3 changes: 2 additions & 1 deletion core/src/main/java/feast/core/util/PackageUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,9 @@ public class PackageUtil {
* handled by default in Apache Beam.
*
* <pre>
* @code
* <code>
* URL url = new URL("jar:file:/tmp/springexample/target/spring-example-1.0-SNAPSHOT.jar!/BOOT-INF/lib/beam-sdks-java-core-2.16.0.jar!/");
* </code>
* String resolvedPath = resolveSpringBootPackageClasspath(url);
* // resolvedPath should point to "/tmp/springexample/target/spring-example-1.0-SNAPSHOT/BOOT-INF/lib/beam-sdks-java-core-2.16.0.jar"
* // Note that spring-example-1.0-SNAPSHOT.jar is extracted in the process.
Expand Down
2 changes: 1 addition & 1 deletion sdk/java/src/main/java/com/gojek/feast/FeastClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public GetFeastServingInfoResponse getFeastServingInfo() {
/**
* Get online features from Feast.
*
* <p>See {@link #getOnlineFeatures(List, List, str)}
* <p>See {@link #getOnlineFeatures(List, List, String)}
*
* @param features list of string feature references to retrieve, feature reference follows this
* format [project]/[name]:[version]
Expand Down

0 comments on commit ac26889

Please sign in to comment.