Kaydet (Commit) a9824e8e authored tarafından jan iversen's avatar jan iversen Kaydeden (comit) Noel Grandin

cid#1326591, cid#1326590 useless call

The call does not do anything, removed.

Change-Id: I24e37ec47551f7dc47a4be6f717f95800624500f
Reviewed-on: https://gerrit.libreoffice.org/20392Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarNoel Grandin <noelgrandin@gmail.com>
üst 4211eaf1
......@@ -239,10 +239,13 @@ public class ValueComparer {
result = true;
else if(XInterface.class.isAssignableFrom(op1.getClass()) && XInterface.class.isAssignableFrom(op2.getClass()))
compareInterfaces((XInterface)op1, (XInterface)op2);
{
// ignore
}
else if(Enum.class.isAssignableFrom(op1.getClass()) && Enum.class.isAssignableFrom(op2.getClass()))
compareEnums((Enum)op1, (Enum)op2);
{
// ignore
}
else if(op1.getClass() == String.class && op2.getClass() == String.class) // is it a String ?
result = ((String)op1).equals(op2);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment