Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'memory/org.eclipse.cdt.debug.ui.memory.search/src/org/eclipse/cdt/debug/ui/memory/search/MemoryMatch.java')
-rw-r--r--memory/org.eclipse.cdt.debug.ui.memory.search/src/org/eclipse/cdt/debug/ui/memory/search/MemoryMatch.java17
1 files changed, 7 insertions, 10 deletions
diff --git a/memory/org.eclipse.cdt.debug.ui.memory.search/src/org/eclipse/cdt/debug/ui/memory/search/MemoryMatch.java b/memory/org.eclipse.cdt.debug.ui.memory.search/src/org/eclipse/cdt/debug/ui/memory/search/MemoryMatch.java
index 679e24c8137..6666f42c0a2 100644
--- a/memory/org.eclipse.cdt.debug.ui.memory.search/src/org/eclipse/cdt/debug/ui/memory/search/MemoryMatch.java
+++ b/memory/org.eclipse.cdt.debug.ui.memory.search/src/org/eclipse/cdt/debug/ui/memory/search/MemoryMatch.java
@@ -7,7 +7,7 @@
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
- *
+ *
* Contributors:
* Ted R Williams (Wind River Systems, Inc.) - initial implementation
*******************************************************************************/
@@ -16,10 +16,9 @@ package org.eclipse.cdt.debug.ui.memory.search;
import java.math.BigInteger;
-public class MemoryMatch
-{
+public class MemoryMatch {
BigInteger fStartAddress;
-
+
public BigInteger getStartAddress() {
return fStartAddress;
}
@@ -37,15 +36,13 @@ public class MemoryMatch
}
BigInteger fLength;
-
- public MemoryMatch(BigInteger startAddress, BigInteger length)
- {
+
+ public MemoryMatch(BigInteger startAddress, BigInteger length) {
fStartAddress = startAddress;
fLength = length;
}
-
- public BigInteger getEndAddress()
- {
+
+ public BigInteger getEndAddress() {
return getStartAddress().add(getLength());
}
}

Back to the top