Top "Deprecation-warning" questions

A deprecation warning indicates that a method is obsolete.

JMeter Warning: Nashorn engine is planned to be removed from a future JDK release

When I run JMeter 5.1.1 recently downloaded, I see many times in terminal window: Warning: Nashorn engine is planned to be …

javascript java jmeter nashorn deprecation-warning
Swift 3 warning for dispatch async

I have this code: DispatchQueue.global(priority: DispatchQueue.GlobalQueuePriority.default).async { let url = URL(string: itemImageURL ) let data = try? Data(…

ios warnings swift3 dispatch-async deprecation-warning
Gradle warning: variant.getOutputFile() and variant.setOutputFile() are deprecated

I am using the following simplified configuration in an Android application project. android { compileSdkVersion 20 buildToolsVersion "20.0.0" defaultConfig { minSdkVersion 8 targetSdkVersion 20 versionCode 1 versionName "1.0.0" …

android gradle build.gradle deprecation-warning
Deprecated constructor for BigDecimal.setScale(int, int) and RoundingMode enums

I'm trying to specify the precision of a BigDecimal value with the following: new BigDecimal(12.99).setScale(2, BigDecimal.ROUND_HALF_EVEN. …

java enums deprecated bigdecimal deprecation-warning
why method setDrawerListener is deprecated?how to resolve it?

In my android application I see the following error: setDrawerListener(android.support.v4.widget.Drawer Layout.DrawerListener)' is deprecated …

android drawerlayout deprecation-warning
DeprecationWarning: BaseException.message has been deprecated as of Python 2.6 exception.__class__, exception.message,

Can anyone tell me the actual reason behind the warning I am getting in this Django middleware, and how can …

python exception python-2.6 deprecation-warning
SyntaxError: 'with' statements are not valid in strict mode

I'm getting this error in safari console when I try to do anything from a breakpoint. Bug report here: https://…

javascript safari with-statement deprecation-warning
WARNING: findDOMNode is deprecated in StrictMode, react-redux-notify

I am getting this warning while using, react-redux-notify index.js:1 Warning: findDOMNode is deprecated in StrictMode. findDOMNode was passed an …

reactjs react-redux deprecation-warning strict-mode react-redux-notify
Matplotlib - MatplotlibDeprecationWarning

I have made a program, that makes a random walk and plots it. And it works perfectly, but I get …

python matplotlib deprecation-warning
Getting screen width on API Level 30 (Android 11): getDefaultDisplay() and getMetrics() are now deprecated. What should we use instead?

I currently calculate the screen width like this : public static int getScreenWidth(@NonNull Context context) { DisplayMetrics displayMetrics = new DisplayMetrics(); ((Activity) …

android deprecated deprecation-warning