Skip to content

Commit

Permalink
Fix class not found error
Browse files Browse the repository at this point in the history
  • Loading branch information
shrverma committed Jul 26, 2023
1 parent b5ce529 commit ed0e9a4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ public Relation transform(RelationalTranformContext relationalTranformContext,
}
return relation.setColumn(
column, expressionFactory.get().compile(
String.format("reflect('java.net.url.Decoder', 'decode', %s, 'utf-8')", column)));
String.format("reflect('java.net.URLDecoder', 'decode', %s, 'utf-8')", column)));
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,6 @@ public Relation transform(RelationalTranformContext relationalTranformContext,
}
return relation.setColumn(
column, expressionFactory.get().compile(
String.format("reflect('java.net.url.Encoder', 'encode', %s, 'utf-8')", column)));
String.format("reflect('java.net.URLEncoder', 'encode', %s, 'utf-8')", column)));
}
}

0 comments on commit ed0e9a4

Please sign in to comment.