-
Notifications
You must be signed in to change notification settings - Fork 210
Expand file tree
/
Copy pathspotbugs-exclude.xml
More file actions
67 lines (67 loc) · 3.81 KB
/
spotbugs-exclude.xml
File metadata and controls
67 lines (67 loc) · 3.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<?xml version="1.0" encoding="UTF-8"?>
<FindBugsFilter>
<Match>
<Class name="com.microsoft.applicationinsights.agent.internal.init.LoggingLevelConfigurator"/>
<Bug pattern="CT_CONSTRUCTOR_THROW"/> <!-- inner class exception thrown in constructor can be ignored -->
</Match>
<Match>
<Class name="com.microsoft.applicationinsights.agent.internal.sampling.RateLimitedSamplingPercentage"/>
<Bug pattern="CT_CONSTRUCTOR_THROW"/> <!-- inner class exception thrown in constructor can be ignored -->
</Match>
<Match>
<Class name="com.microsoft.applicationinsights.agent.internal.telemetry.MetricFilter$IncludeExclude"/>
<Bug pattern="CT_CONSTRUCTOR_THROW"/> <!-- inner class exception thrown in constructor can be ignored -->
</Match>
<Match>
<Class name="com.microsoft.applicationinsights.agent.internal.configuration.Configuration$ProcessorAction"/>
<Bug pattern="CT_CONSTRUCTOR_THROW"/> <!-- inner class exception thrown in constructor can be ignored -->
</Match>
<Match>
<Class name="com.microsoft.gcmonitor.collectors.JmxGarbageCollectorStats"/>
<Bug pattern="CT_CONSTRUCTOR_THROW"/> <!-- inner class exception thrown in constructor can be ignored -->
</Match>
<Match>
<Class name="com.microsoft.applicationinsights.diagnostics.collection.libos.os.linux.LinuxKernelStats"/>
<Bug pattern="CT_CONSTRUCTOR_THROW"/> <!-- inner class exception thrown in constructor can be ignored -->
</Match>
<Match>
<Class name="com.microsoft.applicationinsights.agent.internal.diagnostics.status.StatusFile"/>
<Bug pattern="ENV_USE_PROPERTY_INSTEAD_OF_ENV"/> <!-- inner class use env var 'HOME' instead of 'user.home' can be ignored -->
</Match>
<Match>
<Class name="com.microsoft.applicationinsights.agent.internal.legacyheaders.DelegatingPropagator"/>
<Bug pattern="SING_SINGLETON_HAS_NONPRIVATE_CONSTRUCTOR"/> <!-- inner class use non-private constructor can be ignored -->
</Match>
<Match>
<Class name="com.microsoft.applicationinsights.agent.internal.legacyheaders.DelegatingPropagator"/>
<Bug pattern="SING_SINGLETON_GETTER_NOT_SYNCHRONIZED"/> <!-- inner class use default encoding can be ignored -->
</Match>
<Match>
<Class name="com.microsoft.applicationinsights.agent.internal.configuration.ConfigurationBuilder$JsonOrigin"/>
<Bug pattern="SING_SINGLETON_GETTER_NOT_SYNCHRONIZED"/> <!-- inner class use default encoding can be ignored -->
</Match>
<Match>
<Class name="com.microsoft.applicationinsights.agent.internal.sampling.DelegatingSampler"/>
<Bug pattern="SING_SINGLETON_HAS_NONPRIVATE_CONSTRUCTOR"/> <!-- inner class use default encoding can be ignored -->
</Match>
<Match>
<Class name="com.microsoft.applicationinsights.agent.internal.sampling.DelegatingSampler"/>
<Bug pattern="SING_SINGLETON_GETTER_NOT_SYNCHRONIZED"/> <!-- inner class use default encoding can be ignored -->
</Match>
<Match>
<Class name="com.microsoft.applicationinsights.agent.internal.telemetry.TelemetryClient"/>
<Bug pattern="SING_SINGLETON_HAS_NONPRIVATE_CONSTRUCTOR"/> <!-- inner class use non-private constructor can be ignored -->
</Match>
<Match>
<Class name="com.microsoft.applicationinsights.agent.internal.telemetry.TelemetryClient"/>
<Bug pattern="SING_SINGLETON_GETTER_NOT_SYNCHRONIZED"/> <!-- inner class use default encoding can be ignored -->
</Match>
<Match>
<Class name="com.microsoft.applicationinsights.extensibility.context.ContextTagKeys"/>
<Bug pattern="SING_SINGLETON_GETTER_NOT_SYNCHRONIZED"/> <!-- inner class use default encoding can be ignored -->
</Match>
<Match>
<Class name="com.microsoft.applicationinsights.agent.internal.profiler.config.ProfilerConfiguration"/>
<Bug pattern="STCAL_INVOKE_ON_STATIC_DATE_FORMAT_INSTANCE"/> <!-- inner class use default encoding can be ignored -->
</Match>
</FindBugsFilter>