Polish
This commit is contained in:
@@ -166,9 +166,8 @@ public class Repackager {
|
||||
* Return the {@link File} to use to backup the original source.
|
||||
* @return the file to use to backup the original source
|
||||
*/
|
||||
public File getBackupFile() {
|
||||
return new File(this.source.getParentFile(),
|
||||
this.source.getName() + ".original");
|
||||
public final File getBackupFile() {
|
||||
return new File(this.source.getParentFile(), this.source.getName() + ".original");
|
||||
}
|
||||
|
||||
private boolean alreadyRepackaged() throws IOException {
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2012-2015 the original author or authors.
|
||||
* Copyright 2012-2016 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
@@ -31,4 +31,5 @@ import java.lang.annotation.Target;
|
||||
@Target({ ElementType.METHOD, ElementType.CONSTRUCTOR, ElementType.TYPE })
|
||||
@Documented
|
||||
@interface UsesUnsafeJava {
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user