About 22,900,000 results
Open links in new tab
  1. Deprecated meaning? - Stack Overflow

    Nov 13, 2011 · Although deprecated features remain in the software, their use may raise warning messages recommending alternative practices, and deprecation may indicate that the feature …

  2. The Difference Between Deprecated, Depreciated and Obsolete

    Feb 9, 2012 · There is a lot of confusion about this and I'd like to know, what exactly is the difference between depreciated, deprecated and obsolete, in a programming context, but also …

  3. spring - What is the replacement for the deprecated @MockBeans …

    Dec 2, 2024 · What is the replacement for the deprecated @MockBeans in SpringBoot 3.4.0? Asked 1 year ago Modified 5 months ago Viewed 86k times

  4. How can I mark a C++ class method as deprecated?

    Feb 19, 2023 · I have a method in a C++ interface that I want to deprecate, with portable code. When I Googled for this all I got was a Microsoft specific solution; #pragma deprecated and …

  5. c++ - How can I get rid of deprecated warnings in deprecated …

    Feb 19, 2017 · One way to implement deprecation warnings is to produce warnings on calls to deprecated functions, unless you are calling from a deprecated context. This way legacy code …

  6. Why is withOpacity deprecated in Flutter 3.27.0, and what is its ...

    Dec 16, 2024 · The reason withOpacity has been deprecated in Flutter 3.27.0 is because, according to the Flutter docs: "Previously, Color had the concept of opacity, which showed up …

  7. java - @deprecated vs @Deprecated - Stack Overflow

    Dec 19, 2013 · 138 @Deprecated is an annotation that is read by the compiler, used to mark a method as deprecated to the compiler and will generate a deprecation compile-time warning if …

  8. Migration to PHP 8.1 - how to fix Deprecated Passing null to …

    Apr 1, 2022 · PHP 8.1 has deprecated passing null as a parameter to a lot of core functions. My main problem is with functions like htmlspecialchars and trim, where null is no longer silently …

  9. Convention for HTTP response header to notify clients of …

    I'm upgrading our REST API endpoints and I want to notify clients when they are calling the to-be-deprecated endpoint. What header should I use in the response with a message along the …

  10. How to mark a method as obsolete or deprecated? - Stack Overflow

    Jul 16, 2020 · 103 With ObsoleteAttribute you can mark a method as deprecated. It has three constructors: [Obsolete]: is a no parameter constructor and is a default using this attribute. …