We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27bdf78 commit 661f8efCopy full SHA for 661f8ef
2 files changed
pom.xml
@@ -6,7 +6,7 @@
6
7
<groupId>me.martinez</groupId>
8
<artifactId>pe</artifactId>
9
- <version>2.1.0</version>
+ <version>2.2.0</version>
10
11
<properties>
12
<maven.compiler.source>8</maven.compiler.source>
src/main/java/me/martinez/pe/headers/ImageSectionHeader.java
@@ -114,4 +114,8 @@ public long getPhysicalAddress() {
114
public long getVirtualSize() {
115
return physicalAddr_vSize;
116
}
117
+
118
+ public boolean hasCharacteristic(long characteristic) {
119
+ return (this.characteristics & characteristic) != 0;
120
+ }
121
0 commit comments