hotspot/src/share/vm/gc_implementation/shared/markSweep.cpp
changeset 17370 59a0620561fa
parent 17105 25b392a7740d
child 17398 f7db0551c9eb
--- a/hotspot/src/share/vm/gc_implementation/shared/markSweep.cpp	Wed May 08 21:06:46 2013 -0400
+++ b/hotspot/src/share/vm/gc_implementation/shared/markSweep.cpp	Fri May 10 08:27:30 2013 -0700
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -95,7 +95,7 @@
     // Process ObjArrays one at a time to avoid marking stack bloat.
     if (!_objarray_stack.is_empty()) {
       ObjArrayTask task = _objarray_stack.pop();
-      ObjArrayKlass* const k = (ObjArrayKlass*)task.obj()->klass();
+      ObjArrayKlass* k = (ObjArrayKlass*)task.obj()->klass();
       k->oop_follow_contents(task.obj(), task.index());
     }
   } while (!_marking_stack.is_empty() || !_objarray_stack.is_empty());