https://bz.apache.org/bugzilla/show_bug.cgi?id=59060
--- Comment #6 from [email protected] --- > This is easily found by an IDE, e.g. using Eclipse: thanx for the tip. I was using a punched card to develop jmeter. > Select a deprecated item, e.g. tableLabel > Open Call Hierarchy > This shows that the item is used by > init() > HTTPFileArgsPanel() > UrlConfigGui.getParameterPanel() You should not blindly rely on your IDE to do this kind of analysis. In your example it's perfectly possible to remove tableLabel without any impact on UrlConfigGui.getParameterPanel(). As tableLabel defaults to null and when it's null the component is not created see init(). tableLabel is not null only when used with the deprecated constructor. the deprecated constructor is only used by the deprecated MultipartUrlConfigGui Some of the methods/ fields were deprecated and not removed to let third party plugins provider adapt to the change. -- You are receiving this mail because: You are the assignee for the bug.
