Skip to content

Commit

Permalink
style: update coding style
Browse files Browse the repository at this point in the history
  • Loading branch information
mgechev committed Dec 20, 2017
1 parent 481a4d1 commit 455e51f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/src/joint_points/method_call.ts
Expand Up @@ -23,7 +23,7 @@ export class MethodCallJointPoint extends JointPoint {
if (
this.precondition.assert({
classDefinition: target,
methodName: key
methodName: key,
}) &&
typeof descriptor.value === 'function'
) {
Expand Down
2 changes: 1 addition & 1 deletion lib/src/joint_points/static_method.ts
Expand Up @@ -21,7 +21,7 @@ export class StaticMethodJointPoint extends JointPoint {
return (
this.precondition.assert({
classDefinition: target,
methodName: key
methodName: key,
}) && typeof descriptor.value === 'function'
);
});
Expand Down

0 comments on commit 455e51f

Please sign in to comment.