1 <?xml version="1.0" encoding="UTF-8"?>
4 Copyright (c) 2012 The Chromium Authors. All rights reserved.
5 Use of this source code is governed by a BSD-style license that can be
6 found in the LICENSE file.
9 <MessageCollection xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10 xsi:noNamespaceSchemaLocation="messagecollection.xsd">
13 <ShortDescription>Chromium FindBugs Plugin </ShortDescription>
14 <Details>Adds style checks enforced in the chromium project.</Details>
17 <Detector class="org.chromium.tools.findbugs.plugin.SynchronizedThisDetector">
20 Shouldn't use synchronized(this).
26 <BugPattern type="CHROMIUM_SYNCHRONIZED_THIS">
27 <ShortDescription>Shouldn't use synchronized(this)</ShortDescription>
28 <LongDescription>Shouldn't use synchronized(this), please narrow down the synchronization scope.</LongDescription>
31 <p>Shouldn't use synchronized(this), please narrow down the synchronization scope.</p>
36 <Detector class="org.chromium.tools.findbugs.plugin.SynchronizedMethodDetector">
39 Shouldn't use synchronized method.
45 <BugPattern type="CHROMIUM_SYNCHRONIZED_METHOD">
46 <ShortDescription>Shouldn't use synchronized method</ShortDescription>
47 <LongDescription>Shouldn't use synchronized method, please narrow down the synchronization scope.</LongDescription>
50 <p>Shouldn't use synchronized method, please narrow down the synchronization scope.</p>
55 <BugCode abbrev="CHROMIUM">CHROMIUM</BugCode>