-
Notifications
You must be signed in to change notification settings - Fork 2
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
Fixed Compiler errors, updated to newest java version, updated travis, updated to newest featureIDE #53
Fixed Compiler errors, updated to newest java version, updated travis, updated to newest featureIDE #53
Changes from 4 commits
b3bd504
06560c0
8a41e4e
6a02b88
3b77828
963271b
826b307
250a2ca
ef529c5
c92109d
32487de
764be5a
1d64214
4471f5c
bfb65e7
75ee471
c28616c
b51d8ca
08c1b78
9c7c2a3
9464e20
b6d4102
30f3c25
003f7be
2c59bb0
c84a9d1
cbfe2a3
02b4399
ae949ba
7785e27
0c9ddd7
3c8410c
a454db8
95df99f
bb57936
bb7368b
38d9296
0159db8
00950e6
b069cd4
774e9a5
381e491
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -62,4 +62,4 @@ public void testPatch2() throws DiffException { | |
assertTrue(patch.getDeltas().size() == 1); | ||
} | ||
|
||
} | ||
} |
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,25 +5,28 @@ | |
public class ProjectNotFoundException extends NoSuchElementException { | ||
|
||
private static final long serialVersionUID = 1L; | ||
|
||
public enum Type {CONFIGURATION, VARIANT}; | ||
|
||
|
||
public enum Type { | ||
CONFIGURATION, VARIANT | ||
}; | ||
|
||
private Type type; | ||
|
||
public ProjectNotFoundException(Type type) { | ||
super(""); | ||
this.type = type; | ||
|
||
} | ||
|
||
public ProjectNotFoundException(Type type, String message) { | ||
super(message); | ||
this.type = type; | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return "A " + (type==Type.CONFIGURATION?"configuration project":"variant") + " does not exist in the workspace. " + getMessage(); | ||
return "A " + (type == Type.CONFIGURATION ? "configuration project" : "variant") | ||
+ " does not exist in the workspace. " + getMessage(); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. OK for now, please use There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This problem will be addressed by the following issue #56 |
||
} | ||
|
||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Indent all over the place (tabsize = 8?)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
?
Edit by @pmbittner : Responding to this comment is impossible in Github. The same comment was made earlier here (#53 (comment)).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this has already been fixed, but Github doesn't track the changes for some reason