-
Notifications
You must be signed in to change notification settings - Fork 170
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
improvement: rename package to filepath (#12)
* rename package to filepath * filepath is mandatory
- Loading branch information
Showing
7 changed files
with
27 additions
and
45 deletions.
There are no files selected for viewing
6 changes: 6 additions & 0 deletions
6
fern-api-java-types/src/main/java/com/fern/IWithFilepath.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
package com.fern; | ||
|
||
interface IWithFilepath { | ||
|
||
String filepath(); | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
fern-api-java-types/src/main/java/com/fern/WithFilepath.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package com.fern; | ||
|
||
import com.fasterxml.jackson.databind.annotation.JsonDeserialize; | ||
import com.fern.immutables.StagedBuilderStyle; | ||
import org.immutables.value.Value; | ||
|
||
@Value.Immutable | ||
@StagedBuilderStyle | ||
@JsonDeserialize(as = ImmutableWithFilepath.class) | ||
public interface WithFilepath extends IWithFilepath { | ||
|
||
static ImmutableWithFilepath.FilepathBuildStage builder() { | ||
return ImmutableWithFilepath.builder(); | ||
} | ||
} |
15 changes: 0 additions & 15 deletions
15
fern-api-java-types/src/main/java/com/fern/WithPackage.java
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters