Tagged Questions
The redundant tag has no wiki summary.
7
votes
6answers
755 views
Why does resharper say 'Catch clause with single 'throw' statement is redundant'?
I thought throwing an exception is good practice to let it bubble back up to the UI or somewhere where you log the exception and notify the user about it.
Why does resharper say it is redundant?
try
...
4
votes
2answers
152 views
Redundant if statement warning in haskell
So I'm following the tutorial Learn you a Haskell for Great Good! and so far I absolutely love Haskell. But in one of the functions mentioned in the tutorial I'm getting a warning that the ...
4
votes
3answers
104 views
Redefining enum enumerators with #define
I have spotted something in C header files what I can't figure out what is for. For example in file bits/socket.h there is an enumaration type enum __socket_type, but after every enumerator there is ...
4
votes
7answers
195 views
How can I simplify this redundant code?
Can someone please help me simpling this redundant piece of code?
if (isset($to) === true)
{
if (is_string($to) === true)
{
$to = explode(',', $to);
}
$to = ...
3
votes
3answers
476 views
jQuery & ASP.Net Resources & Gotchas
What are some good jQuery Resources along with some gotchas when using it with ASP.Net?
2
votes
3answers
922 views
Disable winforms refresh
Every time I change the enable disable property of the controls on my winform it repaints the whole form. I want to avoid the redundant repaints by only repainting when i have updated all of the ...
1
vote
2answers
296 views
Is it possible to share an Symfony2 installation (multiple websites [domains] on one server)
I want to host multiple Symfony2 based websites under one root (server). Would it be possible to share the symfony own files? (vendors etc.). Does someone know a tutorial? Is it hard to manage? AFAIK ...
1
vote
1answer
55 views
Redundant MySQL Index?
Action Keyname Type Unique Packed Column Cardinality Collation Null Comment
Edit Drop PRIMARY BTREE Yes No TickerID 23200 A
Timestamp 13897209 A
Edit Drop ...
1
vote
3answers
130 views
Why doesn't resharper suggest removing redundant access modifiers?
Resharper is superb, as any fule kno.
However, if I declare a method such:
private void MethodName() { //code in here }
or an enum:
public enum SomeEnum { Value1, Value2 }
Resharper doesn't ...
1
vote
1answer
120 views
System.Tuple in two assemblies, what to do?
Error 1 The type 'System.Tuple' exists in both 'c:\Program Files (x86)\Reference Assemblies\Microsoft\Framework.NETFramework\v4.0\mscorlib.dll' and 'c:\Program Files ...
1
vote
3answers
656 views
Hibernate: Mapping One-way Redundant Columns
In my schema there are a few redundant columns used to speed up report queries. For example, the purchase total of a sale is saved in the "purchase_total" column of the "sale" table, yet in the ...
1
vote
7answers
710 views
Is there any downside to redundant qualifiers? Any benefit?
For example, referencing something as System.Data.Datagrid as opposed to just Datagrid. Please provide examples and explanation. Thanks.
0
votes
0answers
22 views
my rails application always product the same Redundant data record
My application is used rails1.2.2(this is a old application) mysql and ruby1.8.7, it worked correct in my working computer(use the server webrick or mongrel), but when I set it in the server, it ...
0
votes
1answer
33 views
Partial rendering redundant method call
I am aware that JSF may call a managed bean method a couple of times even if it is called only once in .xhtml. I understand that is due to encode* methods.
I would like to ask you to explain the ...
0
votes
2answers
67 views
Why do Property Setters get called more often than expected?
I have observed a behaviour in VB.net where property setters get called more often than seems necessary, in conjunction with calls to the sister setter method.
Public Class Form1
Private Sub ...
0
votes
1answer
132 views
Postfix server mirroring (backup server)
I'm needing to set up a remote mirror for a postfix server (where the content of both mail servers should be the same at any time).
The idea is that if the main server comes down at some point the ...
0
votes
6answers
159 views
How is C++ VIRTUAL function not redundant? [closed]
Possible Duplicates:
Overriding vs Virtual
How am i overriding this C++ inherited member function without the virtual keyword being used?
I am learning C++ at this moment, but I'm not ...
0
votes
1answer
113 views
Delete redundant MOSS content database entry
In a sharepoint content database we have noticed there are a couple of records in the all_docs table that reference documents that no longer exist. The listid guid that they are associated with is not ...
0
votes
2answers
172 views
Is ARP source hardware address redundant? (already contained in ethernet header)
I'm working on a network security project and I noticed something that I can't explain:
Why do we need a source hardware address field in arp? Isn't it already contained in the ethernet header?