From: Andreas Beeker Date: Sun, 28 Feb 2016 15:24:14 +0000 (+0000) Subject: find bugs fix - WMF_HEADER_MAGIC isn't final but should be X-Git-Tag: REL_3_14_FINAL~6 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=08097483ae3345df6d8b40ec1d404ac5fa3ef919;p=poi.git find bugs fix - WMF_HEADER_MAGIC isn't final but should be git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1732753 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/scratchpad/src/org/apache/poi/hwmf/record/HwmfPlaceableHeader.java b/src/scratchpad/src/org/apache/poi/hwmf/record/HwmfPlaceableHeader.java index ea22350135..8d65ba002f 100644 --- a/src/scratchpad/src/org/apache/poi/hwmf/record/HwmfPlaceableHeader.java +++ b/src/scratchpad/src/org/apache/poi/hwmf/record/HwmfPlaceableHeader.java @@ -24,7 +24,7 @@ import org.apache.poi.util.LittleEndianConsts; import org.apache.poi.util.LittleEndianInputStream; public class HwmfPlaceableHeader { - public static int WMF_HEADER_MAGIC = 0x9AC6CDD7; + public static final int WMF_HEADER_MAGIC = 0x9AC6CDD7; final Rectangle2D bounds; final int unitsPerInch;