Ask questions and see you at March 6, 8 pm CET: youtube.com/@bienadam
Also checkout recent episode:
Please keep the questions as short and as concise as only possible. Feel free to ask several, shorter questions. I will also cover some questions in my "shorts" https://youtube.com/playlist?list=PLxU9yM-_yPs8xqd8Yu4ecpVwiUD_1Xv4N between the shows.
Upcoming airhacks.tv events are also going to be announced at meetup.com/airhacks
New: the airhacks.tv discord server: discord.gg/airhacks
Hi Adam,
long time no writing from me, just too busy but always watching the sessions on YouTube after they air.
A quick question: is there an elegant way to find the name of the method one is in?
At the moment I do this
var action = (this.getClass().getSimpleName() + "." + getInstance().walk(frames -> frames.findFirst().map(StackFrame::getMethodName)).get());
but I definitely don't find it elegant and code must be performant and elegant.
Thanks again,
D.