Skip to content

Commit 7e6d98b

Browse files
committed
fixup! Reduce size of EntryMethodObject and ObjectID
1 parent aa81ca9 commit 7e6d98b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/projections/Tools/Timeline/EntryMethodObject.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1118,7 +1118,7 @@ private void setPackUsage()
11181118
{
11191119
for(PackTime pt : packs){
11201120
// packtime += packs[p].EndTime - packs[p].BeginTime + 1;
1121-
packtime += pt.EndTime - pt.BeginTime;
1121+
packtime += (int)(pt.EndTime - pt.BeginTime);
11221122
if(pt.BeginTime < data.startTime())
11231123
packtime -= (data.startTime() - pt.BeginTime);
11241124
if(pt.EndTime > data.endTime())

0 commit comments

Comments
 (0)