Skip to content

Commit

Permalink
add comments
Browse files Browse the repository at this point in the history
  • Loading branch information
MabelYC committed Jan 23, 2024
1 parent 6ce82ff commit 92985dd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ public Object invoke(Object proxy, Method method, Object[] args) {
} else if (args != null && "as".equals(method.getName()) && args[0] instanceof Class) {
@SuppressWarnings("unchecked")
Class<? extends PipelineOptions> clazz = (Class<? extends PipelineOptions>) args[0];
return as(clazz, (PipelineOptions) proxy);
return as(clazz, (PipelineOptions) proxy); // LI-specific change to wire in offspring
} else if (args != null
&& "populateDisplayData".equals(method.getName())
&& args[0] instanceof DisplayData.Builder) {
Expand Down

0 comments on commit 92985dd

Please sign in to comment.