mirror of
https://github.com/sigmasternchen/xtext-core
synced 2025-03-16 16:58:56 +00:00
Bug: 459051 [xtext][linking] Maintain information about compile time constants
Added a hook to execute logic after the final linking was done in the batch type resolution (addDeferredLogic()). Not exposed as (provisional) API yet. Also: - Don’t forget the root cause if something goes wrong during resource storage write operation - Yet another NPE guard for default packages and type lookup Change-Id: I26bff265485584f56f615fb3a7c7c60562992ec6
This commit is contained in:
parent
beb881f93f
commit
48aedfcf0a
1 changed files with 5 additions and 1 deletions
|
@ -41,7 +41,11 @@ import org.eclipse.xtext.nodemodel.serialization.SerializationConversionContext
|
|||
} catch (IOException e) {
|
||||
LOG.error(e.message, e)
|
||||
} finally {
|
||||
zipOut.close
|
||||
try {
|
||||
zipOut.close
|
||||
} catch(IOException e) {
|
||||
LOG.error(e.message, e)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue