From: Eric Wong Date: Tue, 4 Feb 2020 04:44:23 +0000 (+0000) Subject: inbox: simplify ->description and ->cloneurl X-Git-Tag: v1.3.0~18 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=6d4fced4acc79d745fcfae972d23c3e0849d277f;hp=6d4fced4acc79d745fcfae972d23c3e0849d277f;p=public-inbox.git inbox: simplify ->description and ->cloneurl We can use "//=" from Perl 5.10 to simplify the logic for these methods. The use of chomp() in ->cloneurl was also unnecessary since split(/\s+/s,...) already removes newlines. ---