Skip to content

Commit

Permalink
Merge branch 'develop' into feature/#119
Browse files Browse the repository at this point in the history
  • Loading branch information
dbwp031 authored Feb 11, 2024
2 parents 4f2e25e + 9ef05d5 commit a464734
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package com.sponus.sponusbe.domain.organizationLink.entity;

import com.sponus.sponusbe.domain.organization.entity.Organization;

import com.sponus.sponusbe.domain.organizationLink.dto.request.OrganizationLinkUpdateRequest;

import jakarta.persistence.Column;
Expand Down Expand Up @@ -46,6 +45,6 @@ public class OrganizationLink {

public void update(OrganizationLinkUpdateRequest request) {
this.name = request.name() == null ? this.name : request.name();
this.url = request.name() == null ? this.url : request.url();
this.url = request.url() == null ? this.url : request.url();
}
}

0 comments on commit a464734

Please sign in to comment.