Skip to content

Commit

Permalink
Fixes #71 - Implement GlobalContext.lookup(Name name) (#72)
Browse files Browse the repository at this point in the history
  • Loading branch information
mnriem authored Dec 18, 2023
1 parent 184e3a0 commit 5eddd0a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public class GlobalContext implements Context {

@Override
public Object lookup(Name name) throws NamingException {
throw new UnsupportedOperationException("Not supported yet.");
return lookup(name.toString());
}

@Override
Expand Down

0 comments on commit 5eddd0a

Please sign in to comment.