hotspot/src/share/vm/prims/methodComparator.cpp
changeset 46630 75aa3e39d02c
parent 38259 b495d1cfe673
equal deleted inserted replaced
46629:8eeacdc76bf2 46630:75aa3e39d02c
     1 /*
     1 /*
     2  * Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2000, 2017, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     7  * published by the Free Software Foundation.
   250       return false;
   250       return false;
   251     if (memcmp(_s_old->bcp(), _s_new->bcp(), len_old) != 0)
   251     if (memcmp(_s_old->bcp(), _s_new->bcp(), len_old) != 0)
   252       return false;
   252       return false;
   253     break;
   253     break;
   254   }
   254   }
       
   255 
       
   256   default:
       
   257     break;
   255   }
   258   }
   256 
   259 
   257   return true;
   260   return true;
   258 }
   261 }
   259 
   262