Remove some unused variables from src/

Only obviously useless, local variables have been removed.
This commit is contained in:
Rob Wu 2014-04-11 23:01:08 +02:00
parent d7dfa447cd
commit 2e97c0d085
17 changed files with 9 additions and 111 deletions

View file

@ -215,13 +215,13 @@ var createMeshCanvas = (function createMeshCanvasClosure() {
ShadingIRs.Mesh = {
fromIR: function Mesh_fromIR(raw) {
var type = raw[1];
//var type = raw[1];
var coords = raw[2];
var colors = raw[3];
var figures = raw[4];
var bounds = raw[5];
var matrix = raw[6];
var bbox = raw[7];
//var bbox = raw[7];
var background = raw[8];
return {
type: 'Pattern',
@ -318,7 +318,6 @@ var TilingPattern = (function TilingPatternClosure() {
var color = this.color;
var objs = this.objs;
var commonObjs = this.commonObjs;
var ctx = this.ctx;
info('TilingType: ' + tilingType);