Skip to content

Commit

Permalink
fixed code style violation (line was too long)
Browse files Browse the repository at this point in the history
  • Loading branch information
saschaszott authored Jan 29, 2024
1 parent 13fb86e commit 45dda91
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,8 @@ private void createNewScopusMetrics(Context context, Item item, CrisMetricDTO sc
newScopusMetrics.setLast(true);
newScopusMetrics.setMetricCount(scopusMetric.getMetricCount());
newScopusMetrics.setAcquisitionDate(new Date());
newScopusMetrics.setRemark(scopusMetric.getRemark() == null ? null : scopusMetric.getRemark().replaceAll("link", "detailUrl"));
newScopusMetrics.setRemark(
scopusMetric.getRemark() == null ? null : scopusMetric.getRemark().replaceAll("link", "detailUrl"));
newScopusMetrics.setDeltaPeriod1(deltaPeriod1);
newScopusMetrics.setDeltaPeriod2(deltaPeriod2);
}
Expand Down

0 comments on commit 45dda91

Please sign in to comment.