Skip to content

Commit

Permalink
Add missing @deprecated annotations
Browse files Browse the repository at this point in the history
This should have been included in testcontainers#7652,
but was likely forgotten.
  • Loading branch information
perlun committed Nov 29, 2023
1 parent 7bf5c49 commit 0137bf6
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -991,6 +991,7 @@ public void addEnv(String key, String value) {
* {@inheritDoc}
*/
@Override
@Deprecated
public void addFileSystemBind(
final String hostPath,
final String containerPath,
Expand Down Expand Up @@ -1019,6 +1020,7 @@ public void addFileSystemBind(
* {@inheritDoc}
*/
@Override
@Deprecated
public SELF withFileSystemBind(String hostPath, String containerPath, BindMode mode) {
addFileSystemBind(hostPath, containerPath, mode);
return self();
Expand Down

0 comments on commit 0137bf6

Please sign in to comment.