Skip to content

Commit

Permalink
fix: remove unused annotation in results_table (#22746)
Browse files Browse the repository at this point in the history
  • Loading branch information
gcf-owl-bot[bot] authored Aug 8, 2023
1 parent 67eb428 commit 70b8d3f
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 36 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -104,25 +104,6 @@ def location_path project:, location:
"projects/#{project}/locations/#{location}"
end

##
# Create a fully-qualified Table resource string.
#
# The resource will be in the following format:
#
# `projects/{project}/datasets/{dataset}/tables/{table}`
#
# @param project [String]
# @param dataset [String]
# @param table [String]
#
# @return [::String]
def table_path project:, dataset:, table:
raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
raise ::ArgumentError, "dataset cannot contain /" if dataset.to_s.include? "/"

"projects/#{project}/datasets/#{dataset}/tables/#{table}"
end

extend self
end
end
Expand Down
Loading

0 comments on commit 70b8d3f

Please sign in to comment.