Skip to content

Commit

Permalink
Update licenser plugin and bump version to RC1
Browse files Browse the repository at this point in the history
  • Loading branch information
caseif committed Feb 27, 2016
1 parent 2b79390 commit 4d770f0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {

id 'net.minecrell.gitpatcher' version '0.7.1'

id 'net.minecrell.licenser' version '0.1.1'
id 'net.minecrell.licenser' version '0.1.2'
id 'com.github.johnrengelman.shadow' version '1.2.3'
}

Expand All @@ -16,7 +16,7 @@ defaultTasks 'clean', 'licenseFormat', 'build'
// Project information
allprojects {
group = 'blue.lapis.nocturne'
version = '1.0.0-SNAPSHOT'
version = '1.0.0-rc1'

sourceCompatibility = '1.8'
targetCompatibility = '1.8'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -202,9 +202,9 @@ public byte[] processMemberBytes(ByteBuffer buffer, boolean isMethod) throws IOE
attrOs.write(getBytes((short) attrCount));

for (int i = 0; i < attrCount; i++) {
Pair<byte[], Boolean> attr = processAttribute(buffer);
attrOs.write(attr.first());
isSynthetic = attr.second();
Pair<byte[], Boolean> attr = processAttribute(buffer);
attrOs.write(attr.first());
isSynthetic = attr.second();
}
final byte[] attrArr = attrOs.toByteArray();
final int memberEnd = buffer.position();
Expand Down

0 comments on commit 4d770f0

Please sign in to comment.