Questions tagged [deprecated]

Deprecation is a status applied to software features or language terms to indicate that they should be avoided, typically because they have been superseded. Use this tag for questions about deprecated features or how to deprecate features yourself (e.g. using annotations).

In the process of authoring computer software, its standards or documentation, deprecation is a status applied to software features to indicate that they should be avoided, typically because they have been superseded. Although deprecated features remain in the software, their use may raise warning messages recommending alternative practices, and deprecation may indicate that the feature will be removed in the future.

Features are deprecated—rather than immediately removed—in order to provide backward compatibility and give programmers who have used the feature time to bring their code into compliance with the new standard.

2508 questions
1
vote
2 answers

Can I ignore the "twitter bootstrap is deprecated" warnings in my code?

I am using the play framework 2.3.8 with twitter Bootstrap 3.3.4 and have several forms in my application, where you can enter input. Sample: @import models.Question @import models.Answer @import helper._ @import…
hamena314
  • 2,969
  • 5
  • 30
  • 57
1
vote
1 answer

How can I figure out what line of Python code is generating a PendingDeprecationWarning?

I have a set of Python 3 unittests, which, when executed with this command line: python3 -m unittest discover -f -v ...are generating a…
Andrew Ferrier
  • 16,664
  • 13
  • 47
  • 76
1
vote
1 answer

UIKeyboardBoundsUserInfoKey deprecated in iphone 4.0 OS

-(void)keyboardWillShow : (NSNotification *)sender { @try { // NSLog(@"notification in first view"); for (UIWindow *keyboardWindow in [[UIApplication sharedApplication] windows]) { for (UIView *keyboard in…
hardik
  • 254
  • 4
  • 15
1
vote
0 answers

TapJoy showOffersWithViewController method is deprecated in Version 11

I'm integrating the new version on TapJoy (V. 11) on iOS and it says that the method --> showOffersWithViewController is deprecated in version 11 and to go to dev.tapjoy.com to see how to fix it. However, while the documentation has been great for…
Jesse S.
  • 783
  • 7
  • 11
1
vote
1 answer

How to configure Android Studio not generate deprecate code?

I have installed latest Android Studio (version 1.2 build on 29 April 2015) and created a new project from it. I can see it generates code that uses deprecated classes like ActionBarActivity and etc. These classes were deprecated several years…
jorel
  • 808
  • 7
  • 15
1
vote
0 answers

Consequences of deprecated Camera class

Changed my code from using deprecated Camera class to CameraDevice and now have the errors indicated ("<-- here"). What is the best alternative for replacing these parameters? Looking at the documentation it seems that, at least for the orientation,…
masteryupa
  • 101
  • 13
1
vote
2 answers

Why two column created of same name in angular + ionic

I am creating a table inside the DB.I am a successfully created a table and able to insert data on table my issue is that in my table I have two "ID" columns but I only created one .why two ID column generate in table. Follow this step to generate…
user944513
  • 12,247
  • 49
  • 168
  • 318
1
vote
1 answer

xcode 6.3 deprecated UIsearchDisplayController, how to silence warning

This line has caused compiler Warnings of searchDisplayController deprecation: as of Xcode 6.3 update. ISSUE LINE if tableView == self.searchDisplayController!.searchResultsTableView IN func tableView(tableView: UITableView, numberOfRowsInSection…
Chameleon
  • 1,608
  • 3
  • 21
  • 39
1
vote
1 answer

.NET Framework deprecated interfaces and attributes. What was your biggest refactoring due to lack of support?

Some .net-framework interfaces and attributes become obsolete and deprecated since new framework version appears. I am warned that such code may be removed or become unpredictable in next versions but have you ever faced the situation when you were…
Andrew Florko
  • 7,672
  • 10
  • 60
  • 107
1
vote
1 answer

Moment JS Deprecation Warning when trying to set time

Using moment version 2.9 if I try to set a time to midnight using either of the following methods var date = moment('2015-03-28T10:55:10.050'); date = moment({hour: 0, minute: 0, seconds: 0, milliseconds: 0}); or …
BrokenEyes
  • 192
  • 2
  • 18
1
vote
0 answers

Magical record deprecated method

what is the alternative for this deprecated method MR_saveWithErrorCallback MR_resetContextForCurrentThread
SyraKozZ
  • 607
  • 8
  • 17
1
vote
5 answers

I get a "Deprecated" notice on my page with few of the session functions

I am getting the below message on my sites page there are more than 20 messages like this... pls guide me to rectify the issue... I am using the PHP 5.3.0 Deprecated: Function eregi() is deprecated in …
OM The Eternity
  • 15,694
  • 44
  • 120
  • 182
1
vote
1 answer

Which version of D3D11 to use (Windows 7, Visual Studio 2013)?

I'm very confused. I was on a two year hiatus but now im back to learning graphics programming. I know that DirectX is deprecated and I believe that I can find the D3D routines in the Windows SDK. Would that still be the case for windows 7? If I…
Moody
  • 1,297
  • 2
  • 12
  • 21
1
vote
0 answers

Deprecated properties in PFLogInView(Controller)

Compiling an iOS app that has now been running for a while, I see the following about the properties: signUpLabel and externalLogInLabel signUpLabel The sign up label. (Deprecated: This property is deprecated and will always be…
Michel
  • 10,303
  • 17
  • 82
  • 179
1
vote
1 answer

Deprecated regroup instruction in R, change to group_by

Suppose this table: Browse[2]> tra_all_data ID CITY COUNTRY PRODUCT CATEGORY YEAR INDICATOR COUNT 1 1 VAL ES Tomato Vegetables 1999 10 10 2 2 MAD ES Beer Alcohol 1999 20 20 3 3 LON UK Whisky …
Adolfo
  • 11
  • 4
1 2 3
99
100