Return-Path: X-Original-To: apmail-hbase-issues-archive@www.apache.org Delivered-To: apmail-hbase-issues-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 257CA10233 for ; Tue, 8 Oct 2013 09:46:20 +0000 (UTC) Received: (qmail 24568 invoked by uid 500); 8 Oct 2013 09:45:00 -0000 Delivered-To: apmail-hbase-issues-archive@hbase.apache.org Received: (qmail 24147 invoked by uid 500); 8 Oct 2013 09:44:45 -0000 Mailing-List: contact issues-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list issues@hbase.apache.org Received: (qmail 24067 invoked by uid 99); 8 Oct 2013 09:44:43 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 08 Oct 2013 09:44:43 +0000 Date: Tue, 8 Oct 2013 09:44:43 +0000 (UTC) From: "Liang Xie (JIRA)" To: issues@hbase.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (HBASE-9725) lost brackets for createMethodTimeMetrics? MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/HBASE-9725?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13789069#comment-13789069 ] Liang Xie commented on HBASE-9725: ---------------------------------- {code} private void createMetricsForMethods(Class iface) { LOG.debug("Creating metrics for interface " + iface.toString()); for (Method m : iface.getDeclaredMethods()) { if (getMethodTimeMetrics(m.getName()) == null) LOG.debug("Creating metrics for method:" + m.getName()); createMethodTimeMetrics(m.getName()); } } {code} should be {code} private void createMetricsForMethods(Class iface) { LOG.debug("Creating metrics for interface " + iface.toString()); for (Method m : iface.getDeclaredMethods()) { if (getMethodTimeMetrics(m.getName()) == null) { LOG.debug("Creating metrics for method:" + m.getName()); createMethodTimeMetrics(m.getName()); } } } {code} > lost brackets for createMethodTimeMetrics? > ------------------------------------------ > > Key: HBASE-9725 > URL: https://issues.apache.org/jira/browse/HBASE-9725 > Project: HBase > Issue Type: Bug > Components: Thrift > Affects Versions: 0.94.12 > Reporter: Liang Xie > Assignee: Liang Xie > > to me, seems lost brackets for createMethodTimeMetrics -- This message was sent by Atlassian JIRA (v6.1#6144)