Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(109)

Side by Side Diff: tools/android/findbugs_plugin/messages.xml

Issue 1841863002: Update monet. (Closed) Base URL: https://github.com/domokit/monet.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <?xml version="1.0" encoding="UTF-8"?>
2
3 <!--
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.
7 -->
8
9 <MessageCollection xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10 xsi:noNamespaceSchemaLocation="messagecollection.xsd">
11
12 <Plugin>
13 <ShortDescription>Chromium FindBugs Plugin </ShortDescription>
14 <Details>Adds style checks enforced in the chromium project.</De tails>
15 </Plugin>
16
17 <Detector class="org.chromium.tools.findbugs.plugin.SynchronizedThisDete ctor">
18 <Details>
19 <![CDATA[
20 Shouldn't use synchronized(this).
21 ]]>
22 </Details>
23
24 </Detector>
25
26 <BugPattern type="CHROMIUM_SYNCHRONIZED_THIS">
27 <ShortDescription>Shouldn't use synchronized(this)</ShortDescrip tion>
28 <LongDescription>Shouldn't use synchronized(this), please narrow down the synchronization scope.</LongDescription>
29 <Details>
30 <![CDATA[
31 <p>Shouldn't use synchronized(this), please narrow down the synchronization scop e.</p>
32 ]]>
33 </Details>
34 </BugPattern>
35
36 <Detector class="org.chromium.tools.findbugs.plugin.SynchronizedMethodDe tector">
37 <Details>
38 <![CDATA[
39 Shouldn't use synchronized method.
40 ]]>
41 </Details>
42
43 </Detector>
44
45 <BugPattern type="CHROMIUM_SYNCHRONIZED_METHOD">
46 <ShortDescription>Shouldn't use synchronized method</ShortDescri ption>
47 <LongDescription>Shouldn't use synchronized method, please narro w down the synchronization scope.</LongDescription>
48 <Details>
49 <![CDATA[
50 <p>Shouldn't use synchronized method, please narrow down the synchronization sco pe.</p>
51 ]]>
52 </Details>
53 </BugPattern>
54
55 <BugCode abbrev="CHROMIUM">CHROMIUM</BugCode>
56 </MessageCollection>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698