Stop using smartmatch ~~ #15
Labels
No labels
bug
code clarity
code organization
database
documentation
improvement
new feature
security
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
nu/CharmBoard#15
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
I don't think it does what I thought it did back when I started using it, so it'd be better to just... Not.
For, i.e. the database type checker, it might be better to force lowercase the config value before comparing it, so if someone types
SQLitein the config instead ofsqlitethen it doesn't die unnecessarily. I believe this is what I intended when deciding to use smartmatch here.For, i.e. the database type checker, it might be better to force lowercase the config value before comparing it, so if someone types
SQLitein the config instead ofsqlitethen it doesn't die unnecessarily. I believe this is what I intended when deciding to use smartmatch here.Yeah... That's literally the only place I was using smartmatch. Now to go through and change each
use experimental qw(try smartmatch);line to justuse experimental qw(try);in every. single. PM file.