mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Jean-Noel Rouvignac
08.48.2015 a89f7014aeb71dba5c94404dfea7eb89e7eeee74
opendj-server-legacy/src/main/java/org/opends/server/plugins/profiler/ProfileStackFrame.java
@@ -81,8 +81,8 @@
    this.className  = className;
    this.methodName = methodName;
    lineNumbers       = new HashMap<Integer,Long>();
    subordinateFrames = new HashMap<ProfileStackFrame,ProfileStackFrame>();
    lineNumbers       = new HashMap<>();
    subordinateFrames = new HashMap<>();
  }
@@ -275,7 +275,7 @@
    HashMap<ProfileStack,Long> stackMap = stacksByMethod.get(classAndMethod);
    if (stackMap == null)
    {
      stackMap = new HashMap<ProfileStack,Long>();
      stackMap = new HashMap<>();
      stacksByMethod.put(classAndMethod, stackMap);
    }
    stackMap.put(stack, count);