Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Khouzam2015-01-13 01:08:59 +0000
committerMatthew Khouzam2015-01-13 13:08:45 +0000
commit6f4be70645c7c4ed85613d2a21bdc02aedeb6c53 (patch)
tree658ee0e0843d4c1e69c133a3ff4d01945b7e9984 /org.eclipse.tracecompass.btf.ui
parent5745c0a3627df6b5d7a5b8c104359151029d86b4 (diff)
downloadorg.eclipse.tracecompass-6f4be70645c7c4ed85613d2a21bdc02aedeb6c53.tar.gz
org.eclipse.tracecompass-6f4be70645c7c4ed85613d2a21bdc02aedeb6c53.tar.xz
org.eclipse.tracecompass-6f4be70645c7c4ed85613d2a21bdc02aedeb6c53.zip
btf: fix order of modifiers in BtfEventPropertySource
Change-Id: Ie833ab7087eadaef7172c405ae7726622a57f71e Signed-off-by: Matthew Khouzam <matthew.khouzam@ericsson.com> Reviewed-on: https://git.eclipse.org/r/39443 Reviewed-by: Hudson CI Reviewed-by: Bernd Hufmann <bernd.hufmann@ericsson.com> Tested-by: Bernd Hufmann <bernd.hufmann@ericsson.com>
Diffstat (limited to 'org.eclipse.tracecompass.btf.ui')
-rw-r--r--org.eclipse.tracecompass.btf.ui/src/org/eclipse/tracecompass/btf/ui/BtfEventPropertySource.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/org.eclipse.tracecompass.btf.ui/src/org/eclipse/tracecompass/btf/ui/BtfEventPropertySource.java b/org.eclipse.tracecompass.btf.ui/src/org/eclipse/tracecompass/btf/ui/BtfEventPropertySource.java
index 888ea56791..34d37659c6 100644
--- a/org.eclipse.tracecompass.btf.ui/src/org/eclipse/tracecompass/btf/ui/BtfEventPropertySource.java
+++ b/org.eclipse.tracecompass.btf.ui/src/org/eclipse/tracecompass/btf/ui/BtfEventPropertySource.java
@@ -151,9 +151,9 @@ public class BtfEventPropertySource extends TmfEventPropertySource {
private class EventPropertySource implements IPropertySource {
private static final String DESCRIPTION = "Description"; //$NON-NLS-1$
private static final String NOTE = "Note"; //$NON-NLS-1$
- final String fEventName;
- final String fNote;
- final String fEventDescription;
+ private final String fEventName;
+ private final String fNote;
+ private final String fEventDescription;
public EventPropertySource(String event, String note) {
fEventName = event;

Back to the top