Revert 56735.  The old bug categories were more informative.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@56755 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Analysis/CFRefCount.cpp b/lib/Analysis/CFRefCount.cpp
index 1a9d6b7..adbeff9 100644
--- a/lib/Analysis/CFRefCount.cpp
+++ b/lib/Analysis/CFRefCount.cpp
@@ -2022,7 +2022,7 @@
     virtual bool isLeak() const { return false; }
 
     const char* getCategory() const { 
-      return "Correctness";
+      return "Memory (Core Foundation/Objective-C)";
     }
   };
   
@@ -2076,10 +2076,6 @@
       return "Object leaked";
     }
     
-    const char* getCategory() const { 
-      return "Performance";
-    }
-    
     virtual void EmitWarnings(BugReporter& BR);
     virtual void GetErrorNodes(std::vector<ExplodedNode<GRState>*>& Nodes);
     virtual bool isLeak() const { return true; }