Tagged Questions
Deprecation is a status applied to software features to indicate that they should be avoided, typically because they have been superseded.
97
votes
4answers
42k views
Why Java Vector class is considered obsolete or deprecated?
Why Java Vector is considered a legacy class, obsolete or deprecated?
Its use isn't valid when working with concurrency?
And if I don't want to manually synchronize objects and just want to use a ...
93
votes
36answers
5k views
What Linux/Unix commands are outdated and have powerful alternatives? [closed]
Today I discovered you can make less act like tail -f.
less filename, then press Shift-F to start follow mode.
Just like tail, but you have all the added features of less - like scrolling, ...
49
votes
14answers
3k views
Is it wrong to use Deprecated methods or classes in Java?
I am using eclipse to develop a web application. Just today I have updated my struts version by changing the JAR file. I am getting warnings at some places that methods are deprecated, but the code is ...
35
votes
4answers
6k views
How to mark a class Deprecated?
How to mark a class deprecated? I do not want to use a class anymore in my project, but do not want to delete it beforea period of 2 weeks.
33
votes
2answers
634 views
Is the safe-bool idiom obsolete in C++11?
This answer of @R. Martinho Fernandes shows, that the safe-bool idiom is apperently deprecated in C++11, as it can be replaced by a simple
explicit operator bool() const;
according to the standard ...
33
votes
4answers
3k views
Best practice to mark deprecated code in Ruby?
I'd like to mark a method as deprecated, so the people using it can easily check their code and catch up. In Java you set @Deprecated and everybody knows what this means.
So is there a preferred way ...
30
votes
5answers
11k views
BaseException.message deprecated in Python 2.6
I get a warning that BaseException.message is deprecated in Python 2.6 when I use the following user-defined exception:
class MyException(Exception):
def __init__(self, message):
self.message = ...
28
votes
8answers
2k views
How can I make my Ruby on Rails 2.3.4 application “Rails 3-ready”
I'm developing an application with Ruby on Rails that I want to maintain for at least a few years, so I'm concerned about the next version coming up soon.
Going from Rails 1 to Rails 2 was such a big ...
20
votes
4answers
9k views
Gem.source_index is deprecated, use Specification. Should I re-install Gem or Rails?
I'm learning RoR on Ubuntu 11. Got the following message when I was trying to generate an app. Did I install something incorrectly? Thank you so much for your help and advice.
$ rails generate ...
20
votes
2answers
21k views
java.net.URLEncoder.encode(String) is deprecated, what should I use instead?
I get the following warning when using java.net.URLEncoder.encode:
warning: [deprecation] encode(java.lang.String)
in java.net.URLEncoder has been deprecated
What should I be using instead?
...
19
votes
3answers
568 views
Why were most java.util.Date methods deprecated?
When you look at the javadoc of the java.util.Date class, most of the methods are deprecated. Why was this done?
18
votes
2answers
4k views
In VB.NET, can I mark a function as deprecated?
Is there an ability in VB.NET to deprecate code?
I know that in C# there are 'attributes', and tags in java; is there anything similar in VB.NET, other than leaving a 'todo:...?
17
votes
2answers
1k views
How do I flag a method as deprecated in Objective-C 2.0?
I'm part of a team developing a fairly large iPad app and there are many different classes we've created as a result. The trouble is some of the methods are now pretty much obsolete and I don't want ...
15
votes
6answers
7k views
Why was “new Date(int year, int month, int day)” deprecated?
My application I've recently inherited is FULL of deprecation warnings about the constructor:
Date d = new Date(int year, int month, int day)
Does anyone know or can point to a reason why something ...
13
votes
6answers
482 views
c++ mark enum value as deprecated?
Is it possible to mark an enum value as deprecated?
e.g.
enum MyEnum {
firstvalue = 0
secondvalue,
thirdvalue, // deprecated
fourthvalue
};
A second prize solution would be to ...
13
votes
4answers
2k views
Google web search API deprecated - what now?
Google Web Search API has been deprecated and replaced with Custom Search API (see http://code.google.com/apis/websearch/).
I wanted to search the whole web but it looks like with the new API only ...
13
votes
2answers
6k views
gluPerspective was removed in OpenGL 3.1, any replacements?
I'm trying to read some OpenGL tutorials on the net. the problem is that I found some old ones that use gluPerspective(). gluPerspective was deprecated in OpenGL 3.0 and removed in 3.1.
What function ...
13
votes
2answers
5k views
How to create and use a multi-dimensional Array in Scala 2.8
in Scala 2.8 how do I create an array of multiple dimensions? For example I want an integer or double matrix, something like double[][] in java.
I know for a fact that arrays have changed in 2.8 and ...
13
votes
14answers
2k views
Will the <b> and <i> tags ever become deprecated?
(This is more of a curiousity question than any pending disaster :D )
So the <b> and <i> tags have been around since near the beginning of the web (I assume). But now we have CSS and many ...
12
votes
7answers
4k views
How to handle deprecated gem warning (SourceIndex#all_gems)?
Got this message today after running bundle update:
$ bundle update
NOTE: Gem::SourceIndex#all_gems is deprecated with no replacement. It will be removed on or after 2011-10-01.
...
12
votes
4answers
1k views
How do I flag a function as being deprecated in an iPhone Objective C header file?
Does any one know how to do this?
I'm guessing there's just some keyword I can stick after the function somewhere?
EDIT: I would like for a compiler warning to be generated should anyone try and use ...
12
votes
2answers
13k views
alternative to deprecated UITableViewCell setText?
Code in the book Beginning iPhone Development (by Dave Mark & Jeff LaMarche) assigns to the UITableViewCell text property:
UITableViewCell *cell = ...
...
cell.text = ...
This assignment brings ...
11
votes
6answers
4k views
Why can't I use fopen?
In the mold of a previous question I asked about the so-called safe library deprecations, I find myself similarly bemused as to why fopen() should be deprecated.
The function takes two C strings, and ...
10
votes
3answers
759 views
Should I use JavaDoc deprecation or the annotation in Java?
There are at the moment, two ways to mark code as depreacted in java.
Via JavaDoc
/*
* @deprecated
*/
Or as an annotation:
@Deprecated
This is my problem - I find it a bit too much to declare ...
9
votes
2answers
241 views
DatatypeContexts Deprecated in Latest GHC: Why?
I was just doing some Haskell development and I recompiled some old code on a new version of GHC:
The Glorious Glasgow Haskell Compilation System, version 7.2.1
And when I did I received the ...
9
votes
2answers
2k views
Rails 3.1.0 assets folder not rendering: Sprockets::Environment#static_root is deprecated
When trying to update my rails 3.1.0.rc4 app to rc6, I must have messed something up because my assets (JS and CSS files) stopped rendering. I tried to revert to rc4, but was still having this ...
9
votes
1answer
9k views
Hibernate - AnnotationConfiguration deprecated
I am using Hibernate in version 3.6.0 and the AnnotationConfiguration is marked as deprecated.
Here is the the line in my HibernateUtil.java class:
sessionFactory = new ...
9
votes
2answers
882 views
Why were the case classes without a parameter list deprecated?
Why were the case classes without a parameter list deprecated from Scala? And why does compiler suggest to use () as parameter list instead?
EDIT :
Someone please answer my second question... :|
9
votes
6answers
7k views
fopen deprecated warning
On Visual Studio 2005 C++ compiler, I get the following warning when my code uses the fopen and such calls.
1>foo.cpp(5) : warning C4996: 'fopen' was declared deprecated
1> c:\program ...
8
votes
2answers
283 views
PictureListener is deprecated and obsolete, is there a replacement?
I would like to be notified when an image has been completely draw on the WebView. Using PictureListener and onNewPicture is a common answer (even suggested by the onPageFinished documentation) to ...
8
votes
3answers
500 views
C++11 without sequence point?
Wikipedia says that sequence points are deprecated in C++11. What does that mean? Does that mean that undefined behaviors due to sequence points has no effects?
8
votes
5answers
655 views
Are Java Properties effectively deprecated?
Java's Properties object hasn't changed much since pre-Java 5, and it hasn't got Generics support, or very useful helper methods (defined pattern to plug in classes to process properties or help to ...
8
votes
4answers
1k views
Why is the + operator for List deprecated in Scala?
Why is the + operator for List deprecated in Scala?
http://www.scala-lang.org/docu/files/api/scala/List.html#%2B%28B%29
8
votes
1answer
274 views
How can I mark Perl code as deprecated?
In my project I'm currently preparing a step-by-step move from legacy code to new, properly-designed and tested modules. Since not every fellow programmer follows closely what I do, I would like to ...
8
votes
13answers
2k views
Upgrading from .NET 1.1 to .NET 2.0, what to expect?
I'm working on a big .NET 1.1 project, and there exists a wish to upgrade this, majorily to be able to use better tools like Visual Studio 2008, but also because of the new features and smaller amount ...
7
votes
2answers
143 views
Deprecated Items In Java
We know that there are several deprecated items in java.
Will they be removed?
Has any of the deprecated items in the past has been removed from java?
Thanks in advance,
Easwar
7
votes
2answers
281 views
How to adapt the Singleton pattern? (Deprecation warning)
Few years ago I found an implementation of the Singleton pattern in Python by Duncan Booth:
class Singleton(object):
"""
Singleton class by Duncan Booth.
Multiple object variables refers to the same ...
7
votes
6answers
434 views
Java: Why is Date deprecated, and what do I use instead?
I come from the C# world, so not too experienced with Java yet. Was just told by Eclipse that the Date was deprecated.
Person p = new Person();
p.setDateOfBirth(new Date(1985, 1, 1));
Why? And what ...
7
votes
5answers
345 views
How can I mark a specific parameter as obsolete/deprecated in C#?
I would like to be able to keep a C# API the same as it is now, but simply deprecate one of the parameters in a method call. Is it possible to do so, or do I need to create a new method without the ...
7
votes
4answers
393 views
When is it appropriate to use static (over unnamed namespaces) in C++?
I have been reading articles about unnamed namespaces the whole day, most articles explained when you should use unnamed namespaces over the static keyword. But I am still left with one big question ...
7
votes
11answers
2k views
Why is the <center> tag deprecated in HTML?
I am just curious as to why the <center> tag in HTML was deprecated.
The <center> was a simple way of quickly center-aligning blocks of text and images by encapsulating the container in a ...
6
votes
1answer
265 views
Key Facebook insights metrics deprecated — alternatives not documented?
Over at https://developers.facebook.com/docs/reference/fql/insights/ Facebook states::
We are deprecating some old insights. These metrics are marked as __deprecated__
throughout this document. After ...
6
votes
4answers
199 views
Where can I find a list of Android features that are deprecated by newer features?
Is there something in the Android developers site that shows what is deprecated by a certain addition to the API?
For instance, how can a person tell what is deprecated by Fragments?
6
votes
3answers
160 views
Is it possible to deprecate some of the values of a java enum and if so, how?
I want to deprecate some, but not all possible enumeration values.
6
votes
1answer
4k views
initWithFrame : reuseIdentifier : is deprecated
In my project i've got a Deprecations warning, initWithFrame : reuseIdentifier : is deprecated
I don't know what it mean, could some one tell me how to resolve this warning
thanks
here is the short ...
6
votes
2answers
237 views
Assigning string literals to char*
Is the following code legal, deprecated or illegal in C++0x?
char* p = "foobar";
I originally asked this question here as a comment.
6
votes
1answer
245 views
Scala: why remove is deprecated in favor of filterNot?
scala> List(1, 2, 3) remove (_ < 2)
<console>:8: warning: method remove in class List is deprecated: use `filterNot'
instead
List(1, 2, 3) remove (_ < 2)
^
...
6
votes
1answer
266 views
Bouncycastle: X509CertificateHolder to X509Certificate?
In versions prior to r146 it was possible to create X509Certificate objects directly.
Now that API is deprecated and the new one only deliveres a X509CertificateHolder object.
I cannot find a way to ...
6
votes
1answer
160 views
Which packages/classes/methods/features will be removed after Scala 2.9?
I wonder if there is an overview somewhere, listing all the things scheduled for removal - not only the obvious things like case class inheritance - but also all the smaller places, were ...
6
votes
1answer
478 views
Which things around case classes will be removed after Scala 2.9 exactly?
I know that the are some changes planned regarding case classes, like disallowing inheritance between them:
scala> case class Foo()
defined class Foo
scala> case class Bar() extends Foo()
...