Skip to content

Remove Unnecessary semicolons in prototype.js. Muse bug bash 2020. #1473

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions zookeeper-docs/src/main/resources/markdown/skin/prototype.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ var Class = (function() {
return true;
})();

function subclass() {};
function subclass() {}
function create() {
var parent = null, properties = $A(arguments);
if (Object.isFunction(properties[0]))
Expand Down Expand Up @@ -1403,7 +1403,7 @@ Array.from = $A;
})();
function $H(object) {
return new Hash(object);
};
}

var Hash = Class.create(Enumerable, (function() {
function initialize(object) {
Expand Down Expand Up @@ -4519,7 +4519,7 @@ Prototype.Selector = (function() {
})();
Prototype._original_property = window.Sizzle;

;(function () {
(function () {
function fakeDefine(fn) {
Prototype._actual_sizzle = fn();
}
Expand Down Expand Up @@ -6273,7 +6273,7 @@ if ( typeof define === "function" && define.amd ) {

})( window );

;(function() {
(function() {
if (typeof Sizzle !== 'undefined') {
return;
}
Expand All @@ -6289,7 +6289,7 @@ if ( typeof define === "function" && define.amd ) {
}
})();

;(function(engine) {
(function(engine) {
var extendElements = Prototype.Selector.extendElements;

function select(selector, scope) {
Expand Down