Skip to content

Commit

Permalink
Mark getPath as beta
Browse files Browse the repository at this point in the history
  • Loading branch information
slisaasquatch committed Jan 5, 2024
1 parent 1111041 commit c0e90f1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,12 @@ public SpecVersion getSpecVersion() {
}

/**
* This method is marked as {@link Beta @Beta} because it may not be perfect. The algorithm for
* generating JSON path can be found at {@link JunkDrawer#escapeSingleQuoteString}.
*
* @return The JSON path of the current traversal.
*/
@Beta
@Nonnull
public String getPath() {
return path;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package com.saasquatch.jsonschemainferrer;

import com.fasterxml.jackson.databind.JsonNode;
import com.saasquatch.jsonschemainferrer.annotations.Beta;
import javax.annotation.Nonnull;

/**
Expand Down Expand Up @@ -35,8 +36,12 @@ public SpecVersion getSpecVersion() {
}

/**
* This method is marked as {@link Beta @Beta} because it may not be perfect. The algorithm for
* generating JSON path can be found at {@link JunkDrawer#escapeSingleQuoteString}.
*
* @return The JSON path of the current traversal.
*/
@Beta
@Nonnull
public String getPath() {
return path;
Expand Down

0 comments on commit c0e90f1

Please sign in to comment.